Files
papeer/.github/workflows/release.yml
Dei Layborer 29935be2c3 Add arm64 build actions (#14)
Add arm64 build actions for darwin/macOS and linux.
2023-09-02 11:49:35 +02:00

23 lines
513 B
YAML

on:
release:
types: [created]
jobs:
releases-matrix:
name: Release Go Binary
runs-on: ubuntu-latest
strategy:
matrix:
goos: [linux, darwin, windows]
goarch: [amd64, arm64]
exclude:
- goarch: arm64
goos: windows
steps:
- uses: actions/checkout@v3
- uses: wangyoucao577/go-release-action@v1.30
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
goos: ${{ matrix.goos }}
goarch: ${{ matrix.goarch }}