mirror of
https://github.com/amnezia-vpn/amneziawg-tools.git
synced 2025-06-05 04:23:43 +02:00
Update linux-build.yml
Signed-off-by: AlexanderGalkov <143902290+AlexanderGalkov@users.noreply.github.com>
This commit is contained in:
parent
72776bc507
commit
5e05aab557
1 changed files with 31 additions and 0 deletions
31
.github/workflows/linux-build.yml
vendored
31
.github/workflows/linux-build.yml
vendored
|
@ -51,3 +51,34 @@ jobs:
|
||||||
with:
|
with:
|
||||||
name: alpine-3.19-amneziawg-tools
|
name: alpine-3.19-amneziawg-tools
|
||||||
path: ./src/build
|
path: ./src/build
|
||||||
|
|
||||||
|
GitHub-Release:
|
||||||
|
name: GitHub Release
|
||||||
|
needs: [Build-for-Ubuntu, Build-for-Alpine]
|
||||||
|
strategy:
|
||||||
|
matrix:
|
||||||
|
include:
|
||||||
|
- os: "ubuntu"
|
||||||
|
release: "22.04"
|
||||||
|
- os: "alpine"
|
||||||
|
release: "3.19"
|
||||||
|
runs-on: ubuntu-latest
|
||||||
|
if: startsWith(github.ref, 'refs/tags/')
|
||||||
|
steps:
|
||||||
|
- name: Download artifacts
|
||||||
|
uses: actions/download-artifact@v4
|
||||||
|
|
||||||
|
- name: Calculate checksums
|
||||||
|
run: for file in $(find ./${{ matrix.os }}-${{ matrix.release }}-amneziawg-tools/ -type f); do openssl dgst -sha256 -r "$file" | awk '{print $1}' > "${file}.sha256"; done
|
||||||
|
|
||||||
|
- name: Zip files
|
||||||
|
run: zip -r ${{ matrix.os }}-${{ matrix.release }}-amneziawg-tools.zip ${{ matrix.os }}-${{ matrix.release }}-amneziawg-tools
|
||||||
|
|
||||||
|
- name: Upload binaries to Release
|
||||||
|
uses: svenstaro/upload-release-action@v2
|
||||||
|
with:
|
||||||
|
repo_token: ${{ secrets.GITHUB_TOKEN }}
|
||||||
|
file: ./${{ matrix.os }}-${{ matrix.release }}-amneziawg-tools.zip
|
||||||
|
tag: ${{ github.ref }}
|
||||||
|
overwrite: true
|
||||||
|
file_glob: true
|
||||||
|
|
Loading…
Add table
Reference in a new issue