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 d671b83 commit 1610547Copy full SHA for 1610547
.github/workflows/node.js.yml
@@ -44,9 +44,11 @@ jobs:
44
45
# - name: Setup .npmrc for authentication
46
# run: echo "//registry.npmjs.org/:_authToken=${{ secrets.NPM_TOKEN }}" > .npmrc
47
-
+ - name: Enable Debug Mode
48
+ run: echo "ACTIONS_STEP_DEBUG=true" >> $GITHUB_ENV
49
- name: Publish to npm (only on main branch)
50
if: github.ref == 'refs/heads/main'
- run: yarn workspaces foreach --all --topological --no-private npm publish --access public
51
+ # run: yarn workspaces foreach --all --topological --no-private npm publish --access public
52
+ run: cd ./packages/main && npm publish --access public
53
env:
54
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}
0 commit comments