-
Notifications
You must be signed in to change notification settings - Fork 5
63 lines (50 loc) · 1.57 KB
/
build_awg_macos.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
58
59
60
61
62
63
name: macos-awg
on: [push]
jobs:
Build-AWG-MacOS:
name: 'AmneziaWG for MacOS'
runs-on: macos-11
if: |
contains(github.event.head_commit.message, '[all]') ||
contains(github.event.head_commit.message, '[macos]') ||
contains(github.event.head_commit.message, '[macos-awg]') ||
contains(github.event.head_commit.message, '[awg]')
steps:
- name: 'Get AmneziaWG'
uses: actions/checkout@v4
with:
repository: amnezia-vpn/amneziawg-go
ref: master
path: amneziawg-go
- name: 'Run build script'
working-directory: amneziawg-go
run: |
make
./amneziawg-go --version
- name: 'Archive artifacts'
uses: actions/upload-artifact@v4
with:
name: awg-macos
path: amneziawg-go/amneziawg-go
github-release:
name: GitHub Release
needs: Build-AWG-MacOS
runs-on: ubuntu-latest
if: startsWith(github.ref, 'refs/tags/')
steps:
- name: Setup | Checkout
uses: actions/checkout@v4
- name: Setup | Artifacts
uses: actions/download-artifact@v4
- name: Setup | Checksums
run: for file in $(find ./ -name '*' ); do openssl dgst -sha256 -r "$file" | awk '{print $1}' > "${file}.sha256"; done
- name: Zip ALL
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: awg-macos.zip
tag: ${{ github.ref }}
overwrite: true
file_glob: true