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.
1 parent 9bc927d commit 5ec029aCopy full SHA for 5ec029a
.github/workflows/publish-release.yml
@@ -131,6 +131,8 @@ jobs:
131
needs: [check-version, create-signed-update-site]
132
runs-on: ubuntu-latest
133
timeout-minutes: 10
134
+ permissions:
135
+ contents: write # to create a release (via gh cli)
136
defaults:
137
run:
138
shell: bash
@@ -156,6 +158,8 @@ jobs:
156
158
echo "${RELEASE_BODY}" > release_notes_prepared.md
157
159
- name: Create Release
160
env:
161
+ # Token required for GH CLI:
162
+ GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
163
TAG_NAME: ${{ github.event.workflow_run.head_branch }}
164
VERSION: ${{ needs.check-version.outputs.VERSION }}
165
run: |
0 commit comments