mirror of
https://github.com/ngoduykhanh/wireguard-ui.git
synced 2025-04-20 20:03:39 +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:
|
strategy:
|
||||||
matrix:
|
matrix:
|
||||||
# build and publish in parallel: linux/386, linux/amd64, darwin/386, darwin/amd64
|
# build and publish in parallel: linux/386, linux/amd64, darwin/386, darwin/amd64
|
||||||
goos: [linux, darwin]
|
goos: [linux, freebsd, darwin]
|
||||||
goarch: ["386", amd64]
|
goarch: [386, amd64, arm, arm64]
|
||||||
|
exclude:
|
||||||
|
- goarch: 386
|
||||||
|
goos: darwin
|
||||||
|
- goarch: arm
|
||||||
|
goos: darwin
|
||||||
|
- goarch: arm64
|
||||||
|
goos: darwin
|
||||||
|
goarm:
|
||||||
|
- 7
|
||||||
steps:
|
steps:
|
||||||
# get the source code
|
# get the source code
|
||||||
- uses: actions/checkout@v2
|
- uses: actions/checkout@v2
|
||||||
|
|
Loading…
Add table
Reference in a new issue