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 55f9532 commit c819beaCopy full SHA for c819bea
.github/workflows/publish-js.yml
@@ -17,7 +17,9 @@ jobs:
17
name: Install pnpm
18
with:
19
run_install: true
20
- - run: pnpm exec lerna run build --no-private
21
- - run: pnpm exec lerna publish from-package --no-private --no-git-tag-version --yes
+ - name: Set publishing config
+ run: pnpm config set '//registry.npmjs.org/:_authToken' "${NODE_AUTH_TOKEN}"
22
env:
23
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}
24
+ - run: pnpm exec lerna run build --no-private
25
+ - run: pnpm exec lerna publish from-package --no-private --no-git-tag-version --yes
0 commit comments