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 b19b007 commit 17c49e3Copy full SHA for 17c49e3
.github/workflows/publishPackage.yml
@@ -58,17 +58,7 @@ jobs:
58
path: typings
59
60
- name: Publish on NPM
61
- uses: JS-DevTools/npm-publish@v1
62
- with:
63
- access: public
64
- registry: https://registry.npmjs.org/
65
- token: ${{ secrets.NPM_TOKEN }}
66
- check-version: false
+ run: npm publish --access=public --registry=https://registry.npmjs.org --token=${{ secrets.NPM_TOKEN }}
67
68
- - name: Publish on GitHub Packages
69
70
71
72
- registry: https://npm.pkg.github.com/
73
- token: ${{ secrets.GITHUB_TOKEN }}
74
+ - name: Publish on NPM
+ run: npm publish --access=public --registry=https://npm.pkg.github.com --token=${{ secrets.GITHUB_TOKEN }}
0 commit comments