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 f1ec56c commit 3637bd4Copy full SHA for 3637bd4
.github/workflows/publish.yml
@@ -5,6 +5,9 @@ on:
5
push:
6
branches: [ "main" ]
7
8
+permissions:
9
+ contents: write
10
+
11
jobs:
12
publish:
13
@@ -52,6 +55,8 @@ jobs:
52
55
git config --global user.email "github-actions[bot]@user.noreply.github.com"
53
56
git tag -a ${{ env.VERSION }} -m"${{ env.VERSION }}"
54
57
git push origin ${{ env.VERSION }}
58
+ env:
59
+ GH_TOKEN: ${{ secrets.GH_TOKEN }}
60
- name: Create Release
61
run: gh release create ${{ env.VERSION }} --title ${{ env.VERSION }} --notes-file release-notes.md ${{github.workspace}}/Packages/*.nupkg ${{github.workspace}}/Packages/*.snupkg
62
env:
0 commit comments