Skip to content

Commit

Permalink
action
Browse files Browse the repository at this point in the history
  • Loading branch information
t0mk committed Jan 6, 2024
1 parent 523147b commit e08deeb
Showing 1 changed file with 14 additions and 2 deletions.
16 changes: 14 additions & 2 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,10 +10,22 @@ jobs:
release-linux-amd64:
name: release linux/amd64
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: actions/checkout@v3
- uses: wangyoucao577/go-release-action@v1
with:
compress_assets: OFF
asset_name: pri-${{ matrix.goos }}-${{ matrix.goarch }}
github_token: ${{ secrets.GITHUB_TOKEN }}
goos: linux
goarch: amd64
goos: ${{ matrix.goos }}
goarch: ${{ matrix.goarch }}
goversion: 1.21.5

0 comments on commit e08deeb

Please sign in to comment.