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 5600606 commit db37dc3Copy full SHA for db37dc3
.github/workflows/on-merge-main-deploy-gpr.yml
@@ -21,6 +21,6 @@ jobs:
21
registry-url: "https://npm.pkg.github.com"
22
- run: npm ci
23
- run: npm run npm-build-package:gpr
24
- - run: cd dist/npm && npm publish --access public
+ - run: cd dist/npm && npm publish
25
env:
26
NODE_AUTH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
.github/workflows/on-merge-main-deploy-npmjs.yml
@@ -16,9 +16,8 @@ jobs:
16
node-version: "16.x"
17
registry-url: "https://registry.npmjs.org"
18
scope: "@proangular"
19
- - run: npm config set registry https://registry.npmjs.org/
20
- run: npm run npm-build-package:npmjs
- - run: cd dist/npm && npm publish
+ - run: cd dist/npm && npm publish --access public
NODE_AUTH_TOKEN: ${{ secrets.NPM_AUTH_TOKEN }}
0 commit comments