Skip to content

Commit ee6d7f5

Browse files
Merge pull request #24 from RedisGraph/fix.publish
Fixed artifact publishing missing permissions
2 parents 9ee6dac + 78a731e commit ee6d7f5

File tree

1 file changed

+6
-1
lines changed

1 file changed

+6
-1
lines changed

.github/workflows/publish.yml

+6-1
Original file line numberDiff line numberDiff line change
@@ -9,13 +9,18 @@ jobs:
99
releases-matrix:
1010
name: Release Go Binary
1111
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.
1216
strategy:
17+
fail-fast: false
1318
matrix:
1419
goos: [linux, darwin]
1520
goarch: [amd64, arm64]
1621
steps:
1722
- uses: actions/checkout@v3
18-
- uses: wangyoucao577/go-release-action@v1.28
23+
- uses: wangyoucao577/go-release-action@v1.36
1924
with:
2025
github_token: ${{ secrets.GITHUB_TOKEN }}
2126
goos: ${{ matrix.goos }}

0 commit comments

Comments
 (0)