|
|
@@ -17,7 +17,9 @@ jobs:
|
|
|
name: Install pnpm
|
|
|
with:
|
|
|
run_install: true
|
|
|
- - run: pnpm exec lerna run build --no-private
|
|
|
- - 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}"
|
|
|
env:
|
|
|
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}
|
|
|
+ - run: pnpm exec lerna run build --no-private
|
|
|
+ - run: pnpm exec lerna publish from-package --no-private --no-git-tag-version --yes
|