Skip to content

Commit 60cdd5a

Browse files
committed
Add missing permission
1 parent a975177 commit 60cdd5a

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

.github/workflows/ci.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -107,10 +107,12 @@ jobs:
107107
name: Create release on GitHub
108108
runs-on: ubuntu-latest
109109
needs: [nuget_publish]
110+
permissions:
111+
contents: write # Needed to create a release.
110112
steps:
111113
- uses: actions/checkout@v4
112114

113115
- name: Create release
114116
run: gh release create ${{ github.ref_name }} --generate-notes
115117
env:
116-
GH_TOKEN: ${{ github.token }}
118+
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}

0 commit comments

Comments
 (0)