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 8f9af24 commit 6584c2eCopy full SHA for 6584c2e
.github/workflows/node.js.yml
@@ -42,6 +42,15 @@ jobs:
42
yarn workspaces foreach --all version patch
43
git push --follow-tags
44
45
+ - name: Set up .npmrc
46
+ run: echo "//registry.npmjs.org/:_authToken=${{ secrets.NPM_TOKEN }}" > ~/.npmrc
47
+
48
+ - name: Debug .npmrc
49
+ run: cat ~/.npmrc
50
51
+ - name: Check NPM Authentication
52
+ run: npm whoami
53
54
# - name: Publish to npm using yarn workspaces
55
# if: github.ref == 'refs/heads/main'
56
# run: yarn workspaces foreach --verbose --all --topological --no-private npm publish --access public
0 commit comments