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 8bd48ac commit 74b98b9Copy full SHA for 74b98b9
.github/workflows/release.yml
@@ -41,13 +41,15 @@ jobs:
41
42
- name: 🛠 Build package
43
run: pnpm build
44
+
45
+ - name: 🚀 Publish to GitHub Packages
46
+ run: pnpm publish --no-git-checks --registry=https://npm.pkg.github.com/
47
+ env:
48
+ NODE_AUTH_TOKEN: ${{ secrets.GH_PUBLISH_PAT }}
49
50
- name: 🚀 Publish to npmjs
51
run: pnpm publish --access public --no-git-checks --registry=https://registry.npmjs.org/
52
env:
53
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}
54
- - name: 🚀 Publish to GitHub Packages
- run: pnpm publish --no-git-checks --registry=https://npm.pkg.github.com/
- env:
- NODE_AUTH_TOKEN: ${{ secrets.GH_PUBLISH_PAT }}
55
0 commit comments