We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent cf8914f commit 66c670cCopy full SHA for 66c670c
1 file changed
.github/workflows/publish.yml
@@ -59,3 +59,13 @@ jobs:
59
with:
60
# No token needed - uses OIDC trusted publishing
61
print-hash: true
62
+
63
+ - name: Create GitHub Release
64
+ env:
65
+ GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
66
+ run: |
67
+ gh release create "v${{ env.NEW_VERSION }}" \
68
+ --repo="${{ github.repository }}" \
69
+ --title="v${{ env.NEW_VERSION }}" \
70
+ --generate-notes \
71
+ ./dist/*
0 commit comments