Skip to content

Commit

Permalink
bug: use contents:write permission for release actions (#2404)
Browse files Browse the repository at this point in the history
defualted all base permissions to contents: read using
#2398
which broke the latest release action
https://github.com/envoyproxy/gateway/actions/runs/7415213672/job/20179669381

Signed-off-by: Arko Dasgupta <[email protected]>
  • Loading branch information
arkodg authored Jan 5, 2024
1 parent 789017d commit 8760e31
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/latest_release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ on:
- "**/*.png"

permissions:
contents: read
contents: write

jobs:
latest-release:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ on:
tags:
- "v*.*.*"
permissions:
contents: read
contents: write

jobs:
release:
Expand Down

0 comments on commit 8760e31

Please sign in to comment.