We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9378c52 commit 50d0368Copy full SHA for 50d0368
.github/workflows/release.yml
@@ -50,10 +50,15 @@ jobs:
50
run: git push --follow-tags origin main
51
# Ensure this pushes to the correct branch (e.g., main)
52
53
+ - name: Publish to npm
54
+ run: npm publish --access public # <-- Scoped packages need --access public
55
+ env:
56
+ NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }
57
+
58
- name: Create GitHub Release
59
uses: softprops/action-gh-release@v2
60
env:
61
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
62
with:
63
tag_name: v${{ steps.package-version.outputs.version }}
- generate_release_notes: true
64
+ generate_release_notes: true
0 commit comments