forked from WireGuard/wireguard-tools
-
Notifications
You must be signed in to change notification settings - Fork 27
57 lines (47 loc) · 1.43 KB
/
windows-build.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
name: Windows
on: [push]
jobs:
Build-for-Windows:
name: Build for Windows
runs-on: windows-latest
steps:
- name: Setup ccache
uses: hendrikmuhs/[email protected]
- name: Checkout
uses: actions/checkout@v4
- name: Build AmneziaWG tools
run: |
cmd /c build.cmd
mkdir build
move x64 build\x64
move x86 build\x86
move arm64 build\arm64
- name: Upload artifact
uses: actions/upload-artifact@v4
with:
retention-days: 1
name: windows-amneziawg-tools
path: build
GitHub-Release:
name: GitHub Release
needs: Build-for-Windows
runs-on: ubuntu-latest
if: startsWith(github.ref, 'refs/tags/')
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Download artifacts
uses: actions/download-artifact@v4
- name: Calculate checksums
run: for file in $(find ./ -name '*.exe' ); do openssl dgst -sha256 -r "$file" | awk '{print $1}' > "${file}.sha256"; done
- name: Zip files
run: for file in *; do zip -r ${file%.*}.zip $file; done
- name: Upload binaries to Release
uses: svenstaro/upload-release-action@v2
with:
repo_token: ${{ secrets.GITHUB_TOKEN }}
file: windows-amneziawg-tools.zip
tag: ${{ github.ref }}
release_name: ${{ github.ref_name }}
overwrite: true
file_glob: true