We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 9ee6dac + 78a731e commit ee6d7f5Copy full SHA for ee6d7f5
.github/workflows/publish.yml
@@ -9,13 +9,18 @@ jobs:
9
releases-matrix:
10
name: Release Go Binary
11
runs-on: ubuntu-latest
12
+ permissions:
13
+ id-token: write # To sign.
14
+ contents: write # To upload release assets.
15
+ actions: read # To read workflow path.
16
strategy:
17
+ fail-fast: false
18
matrix:
19
goos: [linux, darwin]
20
goarch: [amd64, arm64]
21
steps:
22
- uses: actions/checkout@v3
- - uses: wangyoucao577/go-release-action@v1.28
23
+ - uses: wangyoucao577/go-release-action@v1.36
24
with:
25
github_token: ${{ secrets.GITHUB_TOKEN }}
26
goos: ${{ matrix.goos }}
0 commit comments