We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 28df0bd commit fcc54e2Copy full SHA for fcc54e2
1 file changed
.github/workflows/release.yml
@@ -29,9 +29,7 @@ jobs:
29
CONFIG_EMAIL: ${{ vars.RELEASE_COMMIT_EMAIL }}
30
- name: Authenticate with Registry
31
run: |
32
- echo "@${NPM_USERNAME}:registry=https://registry.npmjs.org/" > .npmrc
33
- echo "registry=https://registry.npmjs.org/" >> .npmrc
34
- echo "//registry.npmjs.org/:_authToken=$NPM_TOKEN" >> .npmrc
+ echo "//registry.npmjs.org/:_authToken=$NPM_TOKEN" > .npmrc
35
npm whoami
36
env:
37
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}
@@ -56,6 +54,6 @@ jobs:
56
54
- name: Publish to NPM 🚀
57
55
# To always compare changes from registry
58
# using `from-package` compares version in local package.json with registry and publish it if required.
59
- run: npm publish -ws
+ run: npm publish -ws --dry-run
60
61
0 commit comments