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 1c33212 commit 051e7d9Copy full SHA for 051e7d9
.github/workflows/publish-release.yml
@@ -83,7 +83,7 @@ jobs:
83
runs-on: ubuntu-latest
84
timeout-minutes: 20
85
permissions:
86
- contents: write # to create a new release
+ contents: write # to create a release (via gh cli)
87
defaults:
88
run:
89
shell: bash
@@ -120,6 +120,8 @@ jobs:
120
echo "$RELEASE_BODY" > release_notes.md
121
- name: Create Release
122
env:
123
+ # Token required for GH CLI:
124
+ GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
125
TAG_NAME: ${{ github.event.workflow_run.head_branch }}
126
VERSION: ${{ needs.check-version.outputs.VERSION }}
127
run: |
0 commit comments