Skip to content

Commit 29935be

Browse files
authored
Add arm64 build actions (#14)
Add arm64 build actions for darwin/macOS and linux.
1 parent a6ba42f commit 29935be

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

.github/workflows/release.yml

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,10 +9,14 @@ jobs:
99
strategy:
1010
matrix:
1111
goos: [linux, darwin, windows]
12+
goarch: [amd64, arm64]
13+
exclude:
14+
- goarch: arm64
15+
goos: windows
1216
steps:
1317
- uses: actions/checkout@v3
1418
- uses: wangyoucao577/[email protected]
1519
with:
1620
github_token: ${{ secrets.GITHUB_TOKEN }}
1721
goos: ${{ matrix.goos }}
18-
goarch: amd64
22+
goarch: ${{ matrix.goarch }}

0 commit comments

Comments
 (0)