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 7dade5f commit 50a8642Copy full SHA for 50a8642
.github/workflows/Publish.yaml
@@ -35,9 +35,8 @@ jobs:
35
run: yarn build
36
37
- name: Set up NPM auth
38
- run: echo "//registry.npmjs.org/:_authToken=${{ secrets.NPM_TOKEN }}" > ~/dist/.npmrc
+ run: echo "//registry.npmjs.org/:_authToken=${{ secrets.NPM_TOKEN }}" > ~/.npmrc
39
40
- name: Publish on npm.js
41
- run: cd dist && npm publish --access public
42
- env:
43
- NODE_AUTH_TOKEN: ${{secrets.NPM_TOKEN}}
+ run: npm publish --access public
+ working-directory: ./dist
0 commit comments