mirror of
https://github.com/drakkan/sftpgo.git
synced 2026-03-14 14:25:52 +01:00
back to development
Signed-off-by: Nicola Murino <nicola.murino@gmail.com>
This commit is contained in:
parent
5f072ad8ac
commit
fb8a8cb791
8 changed files with 22 additions and 16 deletions
10
.github/workflows/docker.yml
vendored
10
.github/workflows/docker.yml
vendored
|
|
@ -141,21 +141,21 @@ jobs:
|
||||||
OPTIONAL_DEPS: ${{ matrix.optional_deps }}
|
OPTIONAL_DEPS: ${{ matrix.optional_deps }}
|
||||||
|
|
||||||
- name: Set up QEMU
|
- name: Set up QEMU
|
||||||
uses: docker/setup-qemu-action@v3
|
uses: docker/setup-qemu-action@v4
|
||||||
|
|
||||||
- name: Set up builder
|
- name: Set up builder
|
||||||
uses: docker/setup-buildx-action@v3
|
uses: docker/setup-buildx-action@v4
|
||||||
id: builder
|
id: builder
|
||||||
|
|
||||||
- name: Login to Docker Hub
|
- name: Login to Docker Hub
|
||||||
uses: docker/login-action@v3
|
uses: docker/login-action@v4
|
||||||
with:
|
with:
|
||||||
username: ${{ secrets.DOCKERHUB_USERNAME }}
|
username: ${{ secrets.DOCKERHUB_USERNAME }}
|
||||||
password: ${{ secrets.DOCKERHUB_TOKEN }}
|
password: ${{ secrets.DOCKERHUB_TOKEN }}
|
||||||
if: ${{ github.event_name != 'pull_request' }}
|
if: ${{ github.event_name != 'pull_request' }}
|
||||||
|
|
||||||
- name: Login to GitHub Container Registry
|
- name: Login to GitHub Container Registry
|
||||||
uses: docker/login-action@v3
|
uses: docker/login-action@v4
|
||||||
with:
|
with:
|
||||||
registry: ghcr.io
|
registry: ghcr.io
|
||||||
username: ${{ github.repository_owner }}
|
username: ${{ github.repository_owner }}
|
||||||
|
|
@ -163,7 +163,7 @@ jobs:
|
||||||
if: ${{ github.event_name != 'pull_request' }}
|
if: ${{ github.event_name != 'pull_request' }}
|
||||||
|
|
||||||
- name: Build and push
|
- name: Build and push
|
||||||
uses: docker/build-push-action@v6
|
uses: docker/build-push-action@v7
|
||||||
with:
|
with:
|
||||||
context: .
|
context: .
|
||||||
builder: ${{ steps.builder.outputs.name }}
|
builder: ${{ steps.builder.outputs.name }}
|
||||||
|
|
|
||||||
2
.github/workflows/release.yml
vendored
2
.github/workflows/release.yml
vendored
|
|
@ -171,7 +171,7 @@ jobs:
|
||||||
|
|
||||||
prepare-mac:
|
prepare-mac:
|
||||||
name: Prepare macOS binaries
|
name: Prepare macOS binaries
|
||||||
runs-on: macos-13
|
runs-on: macos-14
|
||||||
|
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@v6
|
- uses: actions/checkout@v6
|
||||||
|
|
|
||||||
|
|
@ -1,6 +1,6 @@
|
||||||
#!/bin/bash
|
#!/bin/bash
|
||||||
|
|
||||||
NFPM_VERSION=2.44.1
|
NFPM_VERSION=2.45.1
|
||||||
NFPM_ARCH=${NFPM_ARCH:-amd64}
|
NFPM_ARCH=${NFPM_ARCH:-amd64}
|
||||||
if [ -z ${SFTPGO_VERSION} ]
|
if [ -z ${SFTPGO_VERSION} ]
|
||||||
then
|
then
|
||||||
|
|
|
||||||
|
|
@ -3,13 +3,13 @@
|
||||||
<package xmlns="http://schemas.microsoft.com/packaging/2015/06/nuspec.xsd">
|
<package xmlns="http://schemas.microsoft.com/packaging/2015/06/nuspec.xsd">
|
||||||
<metadata>
|
<metadata>
|
||||||
<id>sftpgo</id>
|
<id>sftpgo</id>
|
||||||
<version>2.7.0</version>
|
<version>2.7.1</version>
|
||||||
<packageSourceUrl>https://github.com/drakkan/sftpgo/tree/main/pkgs/choco</packageSourceUrl>
|
<packageSourceUrl>https://github.com/drakkan/sftpgo/tree/main/pkgs/choco</packageSourceUrl>
|
||||||
<owners>asheroto</owners>
|
<owners>asheroto</owners>
|
||||||
<title>SFTPGo</title>
|
<title>SFTPGo</title>
|
||||||
<authors>Nicola Murino</authors>
|
<authors>Nicola Murino</authors>
|
||||||
<projectUrl>https://sftpgo.com</projectUrl>
|
<projectUrl>https://sftpgo.com</projectUrl>
|
||||||
<iconUrl>https://cdn.statically.io/gh/drakkan/sftpgo/v2.7.0/static/img/logo.png</iconUrl>
|
<iconUrl>https://cdn.statically.io/gh/drakkan/sftpgo/v2.7.1/static/img/logo.png</iconUrl>
|
||||||
<licenseUrl>https://github.com/drakkan/sftpgo/blob/main/LICENSE</licenseUrl>
|
<licenseUrl>https://github.com/drakkan/sftpgo/blob/main/LICENSE</licenseUrl>
|
||||||
<requireLicenseAcceptance>false</requireLicenseAcceptance>
|
<requireLicenseAcceptance>false</requireLicenseAcceptance>
|
||||||
<projectSourceUrl>https://github.com/drakkan/sftpgo</projectSourceUrl>
|
<projectSourceUrl>https://github.com/drakkan/sftpgo</projectSourceUrl>
|
||||||
|
|
@ -32,7 +32,7 @@ You can find more info [here](https://docs.sftpgo.com/2.6/).
|
||||||
|
|
||||||
* This package installs SFTPGo as Windows Service.
|
* This package installs SFTPGo as Windows Service.
|
||||||
* After the first installation please take a look at the [Getting Started Guide](https://docs.sftpgo.com/2.7/initial-configuration/).</description>
|
* After the first installation please take a look at the [Getting Started Guide](https://docs.sftpgo.com/2.7/initial-configuration/).</description>
|
||||||
<releaseNotes>https://github.com/drakkan/sftpgo/releases/tag/v2.7.0</releaseNotes>
|
<releaseNotes>https://github.com/drakkan/sftpgo/releases/tag/v2.7.1</releaseNotes>
|
||||||
</metadata>
|
</metadata>
|
||||||
<files>
|
<files>
|
||||||
<file src="**" exclude="**\*.md;**\icon.png;**\icon.jpg;**\icon.svg" />
|
<file src="**" exclude="**\*.md;**\icon.png;**\icon.jpg;**\icon.svg" />
|
||||||
|
|
|
||||||
|
|
@ -1,8 +1,8 @@
|
||||||
$ErrorActionPreference = 'Stop'
|
$ErrorActionPreference = 'Stop'
|
||||||
$packageName = 'sftpgo'
|
$packageName = 'sftpgo'
|
||||||
$softwareName = 'SFTPGo'
|
$softwareName = 'SFTPGo'
|
||||||
$url = 'https://github.com/drakkan/sftpgo/releases/download/v2.7.0/sftpgo_v2.7.0_windows_x86_64.exe'
|
$url = 'https://github.com/drakkan/sftpgo/releases/download/v2.7.1/sftpgo_v2.7.1_windows_x86_64.exe'
|
||||||
$checksum = 'E091845514444E93F7FD4C89888E418FCEEC5A38D7D7FE7DA7A8F8B65D36E51F'
|
$checksum = '5187F2DAA58987EAE1760B6383095EF8B7E18ED1A872F2514ACB767D781D1883'
|
||||||
$silentArgs = '/VERYSILENT'
|
$silentArgs = '/VERYSILENT'
|
||||||
$validExitCodes = @(0)
|
$validExitCodes = @(0)
|
||||||
|
|
||||||
|
|
@ -47,6 +47,6 @@ Write-Output ""
|
||||||
Write-Output "General information:"
|
Write-Output "General information:"
|
||||||
Write-Output "`thttps://sftpgo.com"
|
Write-Output "`thttps://sftpgo.com"
|
||||||
Write-Output "Documentation location:"
|
Write-Output "Documentation location:"
|
||||||
Write-Output "`thttps://docs.sftpgo.com/"
|
Write-Output "`thttps://docs.sftpgo.com/latest/"
|
||||||
Write-Output ""
|
Write-Output ""
|
||||||
Write-Output "---------------------------"
|
Write-Output "---------------------------"
|
||||||
|
|
@ -1,3 +1,9 @@
|
||||||
|
sftpgo (2.7.1-1ppa1) bionic; urgency=medium
|
||||||
|
|
||||||
|
* New upstream release
|
||||||
|
|
||||||
|
-- Nicola Murino <nicola.murino@gmail.com> Fri, 13 Mar 2026 21:05:12 +0100
|
||||||
|
|
||||||
sftpgo (2.7.0-1ppa1) bionic; urgency=medium
|
sftpgo (2.7.0-1ppa1) bionic; urgency=medium
|
||||||
|
|
||||||
* New upstream release
|
* New upstream release
|
||||||
|
|
|
||||||
|
|
@ -11,7 +11,7 @@ Index: sftpgo/sftpgo.json
|
||||||
"ca_endpoint": "https://acme-v02.api.letsencrypt.org/directory",
|
"ca_endpoint": "https://acme-v02.api.letsencrypt.org/directory",
|
||||||
"renew_days": 30,
|
"renew_days": 30,
|
||||||
"http01_challenge": {
|
"http01_challenge": {
|
||||||
@@ -198,7 +198,7 @@
|
@@ -200,7 +200,7 @@
|
||||||
},
|
},
|
||||||
"data_provider": {
|
"data_provider": {
|
||||||
"driver": "sqlite",
|
"driver": "sqlite",
|
||||||
|
|
@ -20,7 +20,7 @@ Index: sftpgo/sftpgo.json
|
||||||
"host": "",
|
"host": "",
|
||||||
"port": 0,
|
"port": 0,
|
||||||
"username": "",
|
"username": "",
|
||||||
@@ -214,7 +214,7 @@
|
@@ -216,7 +216,7 @@
|
||||||
"track_quota": 2,
|
"track_quota": 2,
|
||||||
"delayed_quota_update": 0,
|
"delayed_quota_update": 0,
|
||||||
"pool_size": 0,
|
"pool_size": 0,
|
||||||
|
|
@ -29,7 +29,7 @@ Index: sftpgo/sftpgo.json
|
||||||
"actions": {
|
"actions": {
|
||||||
"execute_on": [],
|
"execute_on": [],
|
||||||
"execute_for": [],
|
"execute_for": [],
|
||||||
@@ -256,7 +256,7 @@
|
@@ -258,7 +258,7 @@
|
||||||
"port": 0,
|
"port": 0,
|
||||||
"proto": "http"
|
"proto": "http"
|
||||||
},
|
},
|
||||||
|
|
|
||||||
Binary file not shown.
|
Before Width: | Height: | Size: 30 KiB After Width: | Height: | Size: 107 KiB |
Loading…
Add table
Add a link
Reference in a new issue