ci: multi-arch release automation

This commit is contained in:
Beau 2024-02-26 16:45:29 +00:00
parent 3cd7e44cb3
commit d64e4b7183

View File

@ -7,13 +7,27 @@ permissions:
packages: write
jobs:
release-linux-amd64:
name: release linux/amd64
releases-matrix:
name: Release
runs-on: ubuntu-latest
strategy:
matrix:
goos: [linux, windows, darwin]
goarch: ["386", amd64, arm64]
exclude:
- goarch: "386"
goos: darwin
- goarch: arm64
goos: windows
steps:
- uses: extractions/setup-just@v1
with:
github-token: ${{ secrets.GITHUB_TOKEN }}
- uses: actions/checkout@v4
- uses: wangyoucao577/go-release-action@v1
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
goos: linux
goarch: amd64
pre_command: export CGO_ENABLED=0
goos: ${{ matrix.goos }}
goarch: ${{ matrix.goarch }}
goversion: "./go.mod"