mirror of
https://github.com/ngoduykhanh/wireguard-ui.git
synced 2025-04-19 19:59:13 +03:00
Support ARM build (#14)
This commit is contained in:
parent
f82922c23d
commit
f76de28a17
1 changed files with 11 additions and 2 deletions
13
.github/workflows/release.yml
vendored
13
.github/workflows/release.yml
vendored
|
@ -11,8 +11,17 @@ jobs:
|
|||
strategy:
|
||||
matrix:
|
||||
# build and publish in parallel: linux/386, linux/amd64, darwin/386, darwin/amd64
|
||||
goos: [linux, darwin]
|
||||
goarch: ["386", amd64]
|
||||
goos: [linux, freebsd, darwin]
|
||||
goarch: [386, amd64, arm, arm64]
|
||||
exclude:
|
||||
- goarch: 386
|
||||
goos: darwin
|
||||
- goarch: arm
|
||||
goos: darwin
|
||||
- goarch: arm64
|
||||
goos: darwin
|
||||
goarm:
|
||||
- 7
|
||||
steps:
|
||||
# get the source code
|
||||
- uses: actions/checkout@v2
|
||||
|
|
Loading…
Add table
Reference in a new issue