We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 08e1b3f commit 1f0d2c7Copy full SHA for 1f0d2c7
1 file changed
.github/workflows/publish-node.yml
@@ -7,7 +7,7 @@ on:
7
required: true
8
9
permissions:
10
- contents: read
+ contents: write
11
12
jobs:
13
publish:
@@ -28,3 +28,8 @@ jobs:
28
- run: pnpm publish --no-git-checks --access public
29
env:
30
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}
31
+
32
+ - name: Create GitHub Release
33
+ run: gh release create "$GITHUB_REF_NAME" --generate-notes
34
+ env:
35
+ GH_TOKEN: ${{ github.token }}
0 commit comments