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 efd97f3 commit 651f27dCopy full SHA for 651f27d
.github/workflows/publish_to_npm.yml
@@ -23,9 +23,10 @@ jobs:
23
- name: Verify version
24
run: echo ${{ github.event.release.tag_name }}
25
26
- - name: Setup NPM
27
- run: echo "//registry.npmjs.org/:_authToken=\${{ secrets.NPM_TOKEN }}" > ~/.npmrc
28
-
29
- run: pnpm install
30
- run: pnpm run build
31
- - run: pnpm publish --access public --no-git-checks
+
+ - name: Publish to NPM
+ run: |
+ echo "//registry.npmjs.org/:_authToken=\${{ secrets.NPM_TOKEN }}" > .npmrc
32
+ pnpm publish --access public --no-git-checks
0 commit comments