Add arm64 build actions (#14)

Add arm64 build actions for darwin/macOS and linux.
This commit is contained in:
Dei Layborer
2023-09-02 05:49:35 -04:00
committed by GitHub
parent a6ba42f3e1
commit 29935be2c3

View File

@@ -9,10 +9,14 @@ jobs:
strategy: strategy:
matrix: matrix:
goos: [linux, darwin, windows] goos: [linux, darwin, windows]
goarch: [amd64, arm64]
exclude:
- goarch: arm64
goos: windows
steps: steps:
- uses: actions/checkout@v3 - uses: actions/checkout@v3
- uses: wangyoucao577/go-release-action@v1.30 - uses: wangyoucao577/go-release-action@v1.30
with: with:
github_token: ${{ secrets.GITHUB_TOKEN }} github_token: ${{ secrets.GITHUB_TOKEN }}
goos: ${{ matrix.goos }} goos: ${{ matrix.goos }}
goarch: amd64 goarch: ${{ matrix.goarch }}