Skip to content

Commit

Permalink
Fix incorrect permissions for release workflow (#6298)
Browse files Browse the repository at this point in the history
## Motivation

The previous PR #6292 updated the wrong permission, this fixes this.
  • Loading branch information
fasmat committed Aug 28, 2024
1 parent d974da9 commit 398ab34
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ jobs:
- os: windows-2022
outname_sufix: "win-amd64"
permissions:
contents: 'write'
contents: 'read'
id-token: 'write'
steps:
- shell: bash
Expand Down Expand Up @@ -133,7 +133,7 @@ jobs:
runs-on: ubuntu-22.04
needs: build-and-upload
permissions:
contents: 'read'
contents: 'write'
id-token: 'write'
steps:
- name: Download the artifacts
Expand Down

0 comments on commit 398ab34

Please sign in to comment.