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 88355ab commit 5f22da1Copy full SHA for 5f22da1
.github/workflows/tag.yaml
@@ -24,11 +24,13 @@ jobs:
24
config-name: release-drafter.yaml
25
publish: false
26
env:
27
- GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
+ GITHUB_TOKEN: ${{ github.token }}
28
29
# Delete the release because a new one will be created when tag is created
30
- name: Delete release
31
run: gh release delete ${{ steps.releaser.outputs.tag_name }}
32
+ env:
33
+ GH_TOKEN: ${{ github.token }}
34
35
# Create a tag using the tag_name generated by Release Drafter
36
- name: Create tag
0 commit comments