2020-06-29 09:15:24 +00:00
|
|
|
name: Release
|
2020-06-28 13:57:33 +00:00
|
|
|
|
|
|
|
on:
|
|
|
|
push:
|
|
|
|
tags: 'v*'
|
|
|
|
|
|
|
|
env:
|
2021-04-07 13:12:09 +00:00
|
|
|
GO_VERSION: 1.16.3
|
2020-06-28 13:57:33 +00:00
|
|
|
|
|
|
|
jobs:
|
2021-04-08 19:29:09 +00:00
|
|
|
prepare-sources-with-deps:
|
|
|
|
name: Prepare sources with deps
|
|
|
|
runs-on: ubuntu-latest
|
2020-06-28 13:57:33 +00:00
|
|
|
steps:
|
|
|
|
- uses: actions/checkout@v2
|
2020-06-29 09:15:24 +00:00
|
|
|
- name: Set up Go
|
2020-06-28 13:57:33 +00:00
|
|
|
uses: actions/setup-go@v2
|
|
|
|
with:
|
2020-06-29 09:15:24 +00:00
|
|
|
go-version: ${{ env.GO_VERSION }}
|
2020-06-28 13:57:33 +00:00
|
|
|
|
2020-06-29 09:15:24 +00:00
|
|
|
- name: Get SFTPGo version
|
2020-06-28 13:57:33 +00:00
|
|
|
id: get_version
|
|
|
|
run: echo ::set-output name=VERSION::${GITHUB_REF/refs\/tags\//}
|
|
|
|
|
|
|
|
- name: Prepare release
|
|
|
|
run: |
|
|
|
|
go mod vendor
|
|
|
|
echo "${SFTPGO_VERSION}" > VERSION.txt
|
|
|
|
tar cJvf sftpgo_${SFTPGO_VERSION}_src_with_deps.tar.xz *
|
|
|
|
env:
|
|
|
|
SFTPGO_VERSION: ${{ steps.get_version.outputs.VERSION }}
|
|
|
|
|
2021-04-08 19:29:09 +00:00
|
|
|
- name: Upload build artifact
|
|
|
|
uses: actions/upload-artifact@v2
|
2020-06-28 13:57:33 +00:00
|
|
|
with:
|
2021-04-08 19:29:09 +00:00
|
|
|
name: sftpgo_${{ steps.get_version.outputs.VERSION }}_src_with_deps.tar.xz
|
|
|
|
path: ./sftpgo_${{ steps.get_version.outputs.VERSION }}_src_with_deps.tar.xz
|
|
|
|
retention-days: 1
|
2020-06-28 13:57:33 +00:00
|
|
|
|
2021-04-08 19:29:09 +00:00
|
|
|
prepare-window-mac:
|
|
|
|
name: Prepare binaries
|
2020-06-28 13:57:33 +00:00
|
|
|
runs-on: ${{ matrix.os }}
|
|
|
|
strategy:
|
|
|
|
matrix:
|
2021-04-07 13:12:09 +00:00
|
|
|
os: [macos-10.15, windows-2019]
|
2020-06-28 13:57:33 +00:00
|
|
|
|
|
|
|
steps:
|
|
|
|
- uses: actions/checkout@v2
|
2020-06-29 09:15:24 +00:00
|
|
|
- name: Set up Go
|
2020-06-28 13:57:33 +00:00
|
|
|
uses: actions/setup-go@v2
|
|
|
|
with:
|
2020-06-29 09:15:24 +00:00
|
|
|
go-version: ${{ env.GO_VERSION }}
|
2020-06-28 13:57:33 +00:00
|
|
|
|
2021-04-07 13:12:09 +00:00
|
|
|
- name: Build for macOS
|
2020-06-28 13:57:33 +00:00
|
|
|
if: startsWith(matrix.os, 'windows-') != true
|
2020-07-11 11:03:15 +00:00
|
|
|
run: go build -ldflags "-s -w -X github.com/drakkan/sftpgo/version.commit=`git describe --always --dirty` -X github.com/drakkan/sftpgo/version.date=`date -u +%FT%TZ`" -o sftpgo
|
2020-06-28 13:57:33 +00:00
|
|
|
|
2020-06-29 09:15:24 +00:00
|
|
|
- name: Build for Windows
|
2020-06-28 13:57:33 +00:00
|
|
|
if: startsWith(matrix.os, 'windows-')
|
|
|
|
run: |
|
|
|
|
$GIT_COMMIT = (git describe --always --dirty) | Out-String
|
|
|
|
$DATE_TIME = ([datetime]::Now.ToUniversalTime().toString("yyyy-MM-ddTHH:mm:ssZ")) | Out-String
|
2020-07-11 11:03:15 +00:00
|
|
|
go build -ldflags "-s -w -X github.com/drakkan/sftpgo/version.commit=$GIT_COMMIT -X github.com/drakkan/sftpgo/version.date=$DATE_TIME" -o sftpgo.exe
|
2020-06-28 13:57:33 +00:00
|
|
|
|
2020-10-10 20:29:04 +00:00
|
|
|
- name: Initialize data provider
|
|
|
|
run: ./sftpgo initprovider
|
|
|
|
shell: bash
|
|
|
|
|
2020-06-29 09:15:24 +00:00
|
|
|
- name: Get SFTPGo version
|
2020-06-28 13:57:33 +00:00
|
|
|
id: get_version
|
|
|
|
run: echo ::set-output name=VERSION::${GITHUB_REF/refs\/tags\//}
|
|
|
|
shell: bash
|
|
|
|
|
|
|
|
- name: Get OS name
|
|
|
|
id: get_os_name
|
|
|
|
run: |
|
2021-04-07 13:12:09 +00:00
|
|
|
if [[ $MATRIX_OS =~ ^macos.* ]]
|
2020-06-28 13:57:33 +00:00
|
|
|
then
|
|
|
|
echo ::set-output name=OS::macOS
|
|
|
|
else
|
|
|
|
echo ::set-output name=OS::windows
|
|
|
|
fi
|
|
|
|
shell: bash
|
|
|
|
env:
|
|
|
|
MATRIX_OS: ${{ matrix.os }}
|
|
|
|
|
2021-04-07 13:12:09 +00:00
|
|
|
- name: Prepare Release for macOS
|
|
|
|
if: startsWith(matrix.os, 'macos-')
|
2020-06-28 13:57:33 +00:00
|
|
|
run: |
|
2021-01-17 21:29:08 +00:00
|
|
|
mkdir -p output/{init,sqlite,bash_completion,zsh_completion}
|
2020-06-28 13:57:33 +00:00
|
|
|
echo "For documentation please take a look here:" > output/README.txt
|
|
|
|
echo "" >> output/README.txt
|
|
|
|
echo "https://github.com/drakkan/sftpgo/blob/${SFTPGO_VERSION}/README.md" >> output/README.txt
|
|
|
|
cp LICENSE output/
|
|
|
|
cp sftpgo output/
|
|
|
|
cp sftpgo.json output/
|
|
|
|
cp sftpgo.db output/sqlite/
|
|
|
|
cp -r static output/
|
|
|
|
cp -r templates output/
|
2021-04-07 13:12:09 +00:00
|
|
|
cp init/com.github.drakkan.sftpgo.plist output/init/
|
2020-10-08 14:02:04 +00:00
|
|
|
./sftpgo gen completion bash > output/bash_completion/sftpgo
|
2020-07-10 21:31:53 +00:00
|
|
|
./sftpgo gen completion zsh > output/zsh_completion/_sftpgo
|
|
|
|
./sftpgo gen man -d output/man/man1
|
|
|
|
gzip output/man/man1/*
|
2020-06-28 13:57:33 +00:00
|
|
|
cd output
|
|
|
|
tar cJvf sftpgo_${SFTPGO_VERSION}_${OS}_x86_64.tar.xz *
|
|
|
|
cd ..
|
|
|
|
env:
|
|
|
|
SFTPGO_VERSION: ${{ steps.get_version.outputs.VERSION }}
|
|
|
|
OS: ${{ steps.get_os_name.outputs.OS }}
|
|
|
|
|
2020-06-29 09:15:24 +00:00
|
|
|
- name: Prepare Release for Windows
|
2020-06-28 13:57:33 +00:00
|
|
|
if: startsWith(matrix.os, 'windows-')
|
|
|
|
run: |
|
|
|
|
mkdir output
|
|
|
|
copy .\sftpgo.exe .\output
|
|
|
|
copy .\sftpgo.json .\output
|
|
|
|
copy .\sftpgo.db .\output
|
|
|
|
copy .\LICENSE .\output\LICENSE.txt
|
|
|
|
mkdir output\templates
|
|
|
|
xcopy .\templates .\output\templates\ /E
|
|
|
|
mkdir output\static
|
|
|
|
xcopy .\static .\output\static\ /E
|
|
|
|
iscc windows-installer\sftpgo.iss
|
|
|
|
env:
|
|
|
|
SFTPGO_ISS_VERSION: ${{ steps.get_version.outputs.VERSION }}
|
|
|
|
SFTPGO_ISS_DOC_URL: https://github.com/drakkan/sftpgo/blob/${{ steps.get_version.outputs.VERSION }}/README.md
|
|
|
|
|
2020-07-10 21:31:53 +00:00
|
|
|
- name: Prepare Portable Release for Windows
|
|
|
|
if: startsWith(matrix.os, 'windows-')
|
|
|
|
run: |
|
2021-01-17 21:29:08 +00:00
|
|
|
mkdir win-portable
|
2020-07-10 21:31:53 +00:00
|
|
|
copy .\sftpgo.exe .\win-portable
|
|
|
|
copy .\sftpgo.json .\win-portable
|
|
|
|
copy .\sftpgo.db .\win-portable
|
|
|
|
copy .\LICENSE .\win-portable\LICENSE.txt
|
|
|
|
mkdir win-portable\templates
|
|
|
|
xcopy .\templates .\win-portable\templates\ /E
|
|
|
|
mkdir win-portable\static
|
|
|
|
xcopy .\static .\win-portable\static\ /E
|
|
|
|
Compress-Archive .\win-portable\* sftpgo_portable_x86_64.zip
|
|
|
|
env:
|
|
|
|
SFTPGO_VERSION: ${{ steps.get_version.outputs.VERSION }}
|
|
|
|
OS: ${{ steps.get_os_name.outputs.OS }}
|
|
|
|
|
2021-04-08 19:29:09 +00:00
|
|
|
- name: Upload macOS artifact
|
2021-04-07 13:12:09 +00:00
|
|
|
if: startsWith(matrix.os, 'macos-')
|
2021-04-08 19:29:09 +00:00
|
|
|
uses: actions/upload-artifact@v2
|
2020-06-28 13:57:33 +00:00
|
|
|
with:
|
2021-04-08 19:29:09 +00:00
|
|
|
name: sftpgo_${{ steps.get_version.outputs.VERSION }}_${{ steps.get_os_name.outputs.OS }}_x86_64.tar.xz
|
|
|
|
path: ./output/sftpgo_${{ steps.get_version.outputs.VERSION }}_${{ steps.get_os_name.outputs.OS }}_x86_64.tar.xz
|
|
|
|
retention-days: 1
|
2020-06-28 13:57:33 +00:00
|
|
|
|
2021-04-08 19:29:09 +00:00
|
|
|
- name: Upload Windows installer artifact
|
2020-06-28 13:57:33 +00:00
|
|
|
if: startsWith(matrix.os, 'windows-')
|
2021-04-08 19:29:09 +00:00
|
|
|
uses: actions/upload-artifact@v2
|
2020-06-28 13:57:33 +00:00
|
|
|
with:
|
2021-04-08 19:29:09 +00:00
|
|
|
name: sftpgo_${{ steps.get_version.outputs.VERSION }}_${{ steps.get_os_name.outputs.OS }}_x86_64.exe
|
|
|
|
path: ./sftpgo_windows_x86_64.exe
|
|
|
|
retention-days: 1
|
2020-07-10 21:31:53 +00:00
|
|
|
|
2021-04-08 19:29:09 +00:00
|
|
|
- name: Upload Windows portable artifact
|
2020-07-10 21:31:53 +00:00
|
|
|
if: startsWith(matrix.os, 'windows-')
|
2021-04-08 19:29:09 +00:00
|
|
|
uses: actions/upload-artifact@v2
|
2020-07-10 21:31:53 +00:00
|
|
|
with:
|
2021-04-08 19:29:09 +00:00
|
|
|
name: sftpgo_${{ steps.get_version.outputs.VERSION }}_${{ steps.get_os_name.outputs.OS }}_portable_x86_64.zip
|
|
|
|
path: ./sftpgo_portable_x86_64.zip
|
|
|
|
retention-days: 1
|
|
|
|
|
|
|
|
prepare-linux:
|
|
|
|
name: Prepare Linux binaries
|
2021-04-07 13:12:09 +00:00
|
|
|
runs-on: ubuntu-18.04
|
|
|
|
strategy:
|
|
|
|
matrix:
|
|
|
|
include:
|
|
|
|
- arch: amd64
|
|
|
|
go-arch: amd64
|
|
|
|
deb-arch: amd64
|
|
|
|
rpm-arch: x86_64
|
|
|
|
tar-arch: x86_64
|
|
|
|
- arch: aarch64
|
|
|
|
distro: ubuntu18.04
|
|
|
|
go-arch: arm64
|
|
|
|
deb-arch: arm64
|
|
|
|
rpm-arch: aarch64
|
|
|
|
tar-arch: arm64
|
|
|
|
- arch: ppc64le
|
|
|
|
distro: ubuntu18.04
|
|
|
|
go-arch: ppc64le
|
|
|
|
deb-arch: ppc64el
|
|
|
|
rpm-arch: ppc64le
|
|
|
|
tar-arch: ppc64le
|
|
|
|
|
|
|
|
steps:
|
|
|
|
- uses: actions/checkout@v2
|
|
|
|
- name: Set up Go
|
|
|
|
if: ${{ matrix.arch == 'amd64' }}
|
|
|
|
uses: actions/setup-go@v2
|
2020-09-26 12:07:24 +00:00
|
|
|
with:
|
2021-04-07 13:12:09 +00:00
|
|
|
go-version: ${{ env.GO_VERSION }}
|
2020-09-26 12:07:24 +00:00
|
|
|
|
2021-04-07 13:12:09 +00:00
|
|
|
- name: Get versions
|
|
|
|
id: get_version
|
|
|
|
run: |
|
|
|
|
echo ::set-output name=SFTPGO_VERSION::${GITHUB_REF/refs\/tags\//}
|
|
|
|
echo ::set-output name=GO_VERSION::${GO_VERSION}
|
|
|
|
shell: bash
|
2020-09-26 12:07:24 +00:00
|
|
|
env:
|
2021-04-07 13:12:09 +00:00
|
|
|
GO_VERSION: ${{ env.GO_VERSION }}
|
|
|
|
|
|
|
|
- name: Build on amd64
|
|
|
|
if: ${{ matrix.arch == 'amd64' }}
|
|
|
|
run: |
|
|
|
|
go build -ldflags "-s -w -X github.com/drakkan/sftpgo/version.commit=`git describe --always --dirty` -X github.com/drakkan/sftpgo/version.date=`date -u +%FT%TZ`" -o sftpgo
|
|
|
|
mkdir -p output/{init,sqlite,bash_completion,zsh_completion}
|
|
|
|
echo "For documentation please take a look here:" > output/README.txt
|
|
|
|
echo "" >> output/README.txt
|
|
|
|
echo "https://github.com/drakkan/sftpgo/blob/${SFTPGO_VERSION}/README.md" >> output/README.txt
|
|
|
|
cp LICENSE output/
|
|
|
|
cp sftpgo.json output/
|
|
|
|
cp -r templates output/
|
|
|
|
cp -r static output/
|
|
|
|
cp init/sftpgo.service output/init/
|
|
|
|
./sftpgo initprovider
|
|
|
|
./sftpgo gen completion bash > output/bash_completion/sftpgo
|
|
|
|
./sftpgo gen completion zsh > output/zsh_completion/_sftpgo
|
|
|
|
./sftpgo gen man -d output/man/man1
|
|
|
|
gzip output/man/man1/*
|
|
|
|
cp sftpgo output/
|
|
|
|
cp sftpgo.db output/sqlite/
|
|
|
|
cd output
|
|
|
|
tar cJvf sftpgo_${SFTPGO_VERSION}_linux_${{ matrix.tar-arch }}.tar.xz *
|
|
|
|
cd ..
|
|
|
|
env:
|
|
|
|
SFTPGO_VERSION: ${{ steps.get_version.outputs.SFTPGO_VERSION }}
|
|
|
|
|
|
|
|
- uses: uraimo/run-on-arch-action@v2.0.9
|
|
|
|
if: ${{ matrix.arch != 'amd64' }}
|
|
|
|
name: Build for ${{ matrix.arch }}
|
|
|
|
id: build
|
2020-09-26 12:07:24 +00:00
|
|
|
with:
|
2021-04-07 13:12:09 +00:00
|
|
|
arch: ${{ matrix.arch }}
|
|
|
|
distro: ${{ matrix.distro }}
|
|
|
|
setup: |
|
|
|
|
mkdir -p "${PWD}/output"
|
|
|
|
dockerRunArgs: |
|
|
|
|
--volume "${PWD}/output:/output"
|
|
|
|
shell: /bin/bash
|
|
|
|
install: |
|
|
|
|
apt-get update -q -y
|
|
|
|
apt-get install -q -y curl gcc git xz-utils
|
|
|
|
curl --retry 5 --retry-delay 2 --connect-timeout 10 -o go.tar.gz -L https://golang.org/dl/go${{ steps.get_version.outputs.GO_VERSION }}.linux-${{ matrix.go-arch }}.tar.gz
|
|
|
|
tar -C /usr/local -xzf go.tar.gz
|
|
|
|
run: |
|
|
|
|
export PATH=$PATH:/usr/local/go/bin
|
|
|
|
go build -ldflags "-s -w -X github.com/drakkan/sftpgo/version.commit=`git describe --always --dirty` -X github.com/drakkan/sftpgo/version.date=`date -u +%FT%TZ`" -o sftpgo
|
|
|
|
mkdir -p output/{init,sqlite,bash_completion,zsh_completion}
|
|
|
|
echo "For documentation please take a look here:" > output/README.txt
|
|
|
|
echo "" >> output/README.txt
|
|
|
|
echo "https://github.com/drakkan/sftpgo/blob/${{ steps.get_version.outputs.SFTPGO_VERSION }}/README.md" >> output/README.txt
|
|
|
|
cp LICENSE output/
|
|
|
|
cp sftpgo.json output/
|
|
|
|
cp -r templates output/
|
|
|
|
cp -r static output/
|
|
|
|
cp init/sftpgo.service output/init/
|
|
|
|
./sftpgo initprovider
|
|
|
|
./sftpgo gen completion bash > output/bash_completion/sftpgo
|
|
|
|
./sftpgo gen completion zsh > output/zsh_completion/_sftpgo
|
|
|
|
./sftpgo gen man -d output/man/man1
|
|
|
|
gzip output/man/man1/*
|
|
|
|
cp sftpgo output/
|
|
|
|
cp sftpgo.db output/sqlite/
|
|
|
|
cd output
|
|
|
|
tar cJvf sftpgo_${{ steps.get_version.outputs.SFTPGO_VERSION }}_linux_${{ matrix.tar-arch }}.tar.xz *
|
|
|
|
cd ..
|
2020-11-08 05:14:03 +00:00
|
|
|
|
2021-04-08 19:29:09 +00:00
|
|
|
- name: Upload build artifact for ${{ matrix.arch }}
|
2021-04-08 06:38:51 +00:00
|
|
|
uses: actions/upload-artifact@v2
|
|
|
|
with:
|
|
|
|
name: sftpgo_${{ steps.get_version.outputs.SFTPGO_VERSION }}_linux_${{ matrix.tar-arch }}.tar.xz
|
|
|
|
path: ./output/sftpgo_${{ steps.get_version.outputs.SFTPGO_VERSION }}_linux_${{ matrix.tar-arch }}.tar.xz
|
|
|
|
retention-days: 1
|
|
|
|
|
2021-04-07 13:12:09 +00:00
|
|
|
- name: Build Packages
|
|
|
|
id: build_linux_pkgs
|
|
|
|
run: |
|
|
|
|
export NFPM_ARCH=${{ matrix.go-arch }}
|
|
|
|
cd pkgs
|
|
|
|
./build.sh
|
|
|
|
PKG_VERSION=${SFTPGO_VERSION:1}
|
|
|
|
echo "::set-output name=pkg-version::${PKG_VERSION}"
|
2020-11-08 05:14:03 +00:00
|
|
|
env:
|
2021-04-07 13:12:09 +00:00
|
|
|
SFTPGO_VERSION: ${{ steps.get_version.outputs.SFTPGO_VERSION }}
|
|
|
|
|
|
|
|
- name: Upload Deb Package
|
2021-04-08 19:29:09 +00:00
|
|
|
uses: actions/upload-artifact@v2
|
2020-11-09 17:39:36 +00:00
|
|
|
with:
|
2021-04-08 19:29:09 +00:00
|
|
|
name: sftpgo_${{ steps.build_linux_pkgs.outputs.pkg-version }}-1_${{ matrix.deb-arch}}.deb
|
|
|
|
path: ./pkgs/dist/deb/sftpgo_${{ steps.build_linux_pkgs.outputs.pkg-version }}-1_${{ matrix.deb-arch}}.deb
|
|
|
|
retention-days: 1
|
2020-11-09 17:39:36 +00:00
|
|
|
|
2021-04-07 13:12:09 +00:00
|
|
|
- name: Upload RPM Package
|
2021-04-08 19:29:09 +00:00
|
|
|
uses: actions/upload-artifact@v2
|
2020-11-09 17:39:36 +00:00
|
|
|
with:
|
2021-04-08 19:29:09 +00:00
|
|
|
name: sftpgo-${{ steps.build_linux_pkgs.outputs.pkg-version }}-1.${{ matrix.rpm-arch}}.rpm
|
|
|
|
path: ./pkgs/dist/rpm/sftpgo-${{ steps.build_linux_pkgs.outputs.pkg-version }}-1.${{ matrix.rpm-arch}}.rpm
|
|
|
|
retention-days: 1
|
|
|
|
|
|
|
|
prepare-linux-bundle:
|
|
|
|
name: Prepare Linux bundle
|
|
|
|
needs: prepare-linux
|
2021-04-08 06:38:51 +00:00
|
|
|
runs-on: ubuntu-latest
|
|
|
|
|
|
|
|
steps:
|
|
|
|
- name: Get versions
|
|
|
|
id: get_version
|
|
|
|
run: |
|
|
|
|
echo ::set-output name=SFTPGO_VERSION::${GITHUB_REF/refs\/tags\//}
|
|
|
|
shell: bash
|
|
|
|
|
|
|
|
- name: Download amd64 artifact
|
|
|
|
uses: actions/download-artifact@v2
|
|
|
|
with:
|
|
|
|
name: sftpgo_${{ steps.get_version.outputs.SFTPGO_VERSION }}_linux_x86_64.tar.xz
|
|
|
|
|
|
|
|
- name: Download arm64 artifact
|
|
|
|
uses: actions/download-artifact@v2
|
|
|
|
with:
|
|
|
|
name: sftpgo_${{ steps.get_version.outputs.SFTPGO_VERSION }}_linux_arm64.tar.xz
|
|
|
|
|
|
|
|
- name: Download ppc64le artifact
|
|
|
|
uses: actions/download-artifact@v2
|
|
|
|
with:
|
|
|
|
name: sftpgo_${{ steps.get_version.outputs.SFTPGO_VERSION }}_linux_ppc64le.tar.xz
|
|
|
|
|
|
|
|
- name: Build bundle
|
|
|
|
shell: bash
|
|
|
|
run: |
|
|
|
|
mkdir -p bundle/{arm64,ppc64le}
|
|
|
|
cd bundle
|
|
|
|
tar xvf ../sftpgo_${SFTPGO_VERSION}_linux_x86_64.tar.xz
|
|
|
|
cd arm64
|
|
|
|
tar xvf ../../sftpgo_${SFTPGO_VERSION}_linux_arm64.tar.xz sftpgo
|
|
|
|
cd ../ppc64le
|
|
|
|
tar xvf ../../sftpgo_${SFTPGO_VERSION}_linux_ppc64le.tar.xz sftpgo
|
|
|
|
cd ..
|
|
|
|
tar cJvf sftpgo_${SFTPGO_VERSION}_linux_bundle.tar.xz *
|
|
|
|
cd ..
|
|
|
|
env:
|
|
|
|
SFTPGO_VERSION: ${{ steps.get_version.outputs.SFTPGO_VERSION }}
|
|
|
|
|
2021-04-08 19:29:09 +00:00
|
|
|
- name: Upload Linux bundle
|
|
|
|
uses: actions/upload-artifact@v2
|
2021-04-08 06:38:51 +00:00
|
|
|
with:
|
2021-04-08 19:29:09 +00:00
|
|
|
name: sftpgo_${{ steps.get_version.outputs.SFTPGO_VERSION }}_linux_bundle.tar.xz
|
|
|
|
path: ./bundle/sftpgo_${{ steps.get_version.outputs.SFTPGO_VERSION }}_linux_bundle.tar.xz
|
|
|
|
retention-days: 1
|
2021-04-08 06:38:51 +00:00
|
|
|
|
2021-04-08 19:29:09 +00:00
|
|
|
create-release:
|
|
|
|
name: Release
|
|
|
|
needs: [prepare-linux-bundle, prepare-sources-with-deps, prepare-window-mac]
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
|
|
|
|
steps:
|
|
|
|
- uses: actions/checkout@v2
|
|
|
|
- name: Get versions
|
|
|
|
id: get_version
|
2021-04-08 06:38:51 +00:00
|
|
|
run: |
|
2021-04-08 19:29:09 +00:00
|
|
|
SFTPGO_VERSION=${GITHUB_REF/refs\/tags\//}
|
|
|
|
PKG_VERSION=${SFTPGO_VERSION:1}
|
|
|
|
echo ::set-output name=SFTPGO_VERSION::${SFTPGO_VERSION}
|
|
|
|
echo "::set-output name=PKG_VERSION::${PKG_VERSION}"
|
2021-04-08 06:38:51 +00:00
|
|
|
shell: bash
|
|
|
|
|
2021-04-08 19:29:09 +00:00
|
|
|
- name: Download amd64 artifact
|
|
|
|
uses: actions/download-artifact@v2
|
|
|
|
with:
|
|
|
|
name: sftpgo_${{ steps.get_version.outputs.SFTPGO_VERSION }}_linux_x86_64.tar.xz
|
|
|
|
|
|
|
|
- name: Download arm64 artifact
|
|
|
|
uses: actions/download-artifact@v2
|
|
|
|
with:
|
|
|
|
name: sftpgo_${{ steps.get_version.outputs.SFTPGO_VERSION }}_linux_arm64.tar.xz
|
|
|
|
|
|
|
|
- name: Download ppc64le artifact
|
|
|
|
uses: actions/download-artifact@v2
|
2021-04-08 06:38:51 +00:00
|
|
|
with:
|
2021-04-08 19:29:09 +00:00
|
|
|
name: sftpgo_${{ steps.get_version.outputs.SFTPGO_VERSION }}_linux_ppc64le.tar.xz
|
|
|
|
|
|
|
|
- name: Download Linux bundle artifact
|
|
|
|
uses: actions/download-artifact@v2
|
|
|
|
with:
|
|
|
|
name: sftpgo_${{ steps.get_version.outputs.SFTPGO_VERSION }}_linux_bundle.tar.xz
|
|
|
|
|
|
|
|
- name: Download Deb amd64 artifact
|
|
|
|
uses: actions/download-artifact@v2
|
|
|
|
with:
|
|
|
|
name: sftpgo_${{ steps.get_version.outputs.PKG_VERSION }}-1_amd64.deb
|
|
|
|
|
|
|
|
- name: Download Deb arm64 artifact
|
|
|
|
uses: actions/download-artifact@v2
|
|
|
|
with:
|
|
|
|
name: sftpgo_${{ steps.get_version.outputs.PKG_VERSION }}-1_arm64.deb
|
|
|
|
|
|
|
|
- name: Download Deb ppc64le artifact
|
|
|
|
uses: actions/download-artifact@v2
|
|
|
|
with:
|
|
|
|
name: sftpgo_${{ steps.get_version.outputs.PKG_VERSION }}-1_ppc64el.deb
|
|
|
|
|
|
|
|
- name: Download RPM x86_64 artifact
|
|
|
|
uses: actions/download-artifact@v2
|
|
|
|
with:
|
|
|
|
name: sftpgo-${{ steps.get_version.outputs.PKG_VERSION }}-1.x86_64.rpm
|
|
|
|
|
|
|
|
- name: Download RPM aarch64 artifact
|
|
|
|
uses: actions/download-artifact@v2
|
|
|
|
with:
|
|
|
|
name: sftpgo-${{ steps.get_version.outputs.PKG_VERSION }}-1.aarch64.rpm
|
|
|
|
|
|
|
|
- name: Download RPM ppc64le artifact
|
|
|
|
uses: actions/download-artifact@v2
|
|
|
|
with:
|
|
|
|
name: sftpgo-${{ steps.get_version.outputs.PKG_VERSION }}-1.ppc64le.rpm
|
|
|
|
|
|
|
|
- name: Download macOS x86_64 artifact
|
|
|
|
uses: actions/download-artifact@v2
|
|
|
|
with:
|
|
|
|
name: sftpgo_${{ steps.get_version.outputs.SFTPGO_VERSION }}_macOS_x86_64.tar.xz
|
|
|
|
|
|
|
|
- name: Download Windows installer x86_64 artifact
|
|
|
|
uses: actions/download-artifact@v2
|
|
|
|
with:
|
|
|
|
name: sftpgo_${{ steps.get_version.outputs.SFTPGO_VERSION }}_windows_x86_64.exe
|
|
|
|
|
|
|
|
- name: Download Windows portable x86_64 artifact
|
|
|
|
uses: actions/download-artifact@v2
|
|
|
|
with:
|
|
|
|
name: sftpgo_${{ steps.get_version.outputs.SFTPGO_VERSION }}_windows_portable_x86_64.zip
|
|
|
|
|
|
|
|
- name: Download source with deps artifact
|
|
|
|
uses: actions/download-artifact@v2
|
|
|
|
with:
|
|
|
|
name: sftpgo_${{ steps.get_version.outputs.SFTPGO_VERSION }}_src_with_deps.tar.xz
|
|
|
|
|
|
|
|
- name: Create release
|
|
|
|
run: |
|
|
|
|
mv sftpgo_windows_x86_64.exe sftpgo_${SFTPGO_VERSION}_windows_x86_64.exe
|
|
|
|
mv sftpgo_portable_x86_64.zip sftpgo_${SFTPGO_VERSION}_windows_portable_x86_64.zip
|
2021-04-10 07:40:02 +00:00
|
|
|
gh release create "${SFTPGO_VERSION}" -t "${SFTPGO_VERSION}"
|
2021-04-08 19:29:09 +00:00
|
|
|
gh release upload "${SFTPGO_VERSION}" sftpgo_*.xz --clobber
|
|
|
|
gh release upload "${SFTPGO_VERSION}" sftpgo-*.rpm --clobber
|
|
|
|
gh release upload "${SFTPGO_VERSION}" sftpgo_*.deb --clobber
|
|
|
|
gh release upload "${SFTPGO_VERSION}" sftpgo_*.exe --clobber
|
|
|
|
gh release upload "${SFTPGO_VERSION}" sftpgo_*.zip --clobber
|
|
|
|
gh release view "${SFTPGO_VERSION}"
|
|
|
|
env:
|
|
|
|
GITHUB_TOKEN: ${{secrets.GITHUB_TOKEN}}
|
|
|
|
SFTPGO_VERSION: ${{ steps.get_version.outputs.SFTPGO_VERSION }}
|