fix: Fix lerna npm publish on release action.

This commit is contained in:
SamTolmay 2021-06-09 12:34:02 +02:00
parent 92f4b88e2f
commit 9469148d09
2 changed files with 6 additions and 29 deletions

View File

@ -13,6 +13,7 @@ jobs:
uses: actions/setup-node@v2
with:
node-version: '14.x'
registry-url: https://registry.npmjs.org/
- uses: actions/checkout@v2
- name: yarn install
@ -58,10 +59,13 @@ jobs:
AWS_ACCESS_KEY_ID: ${{ secrets.AWS_S3_BLOCKS_CDN_ACCESS_KEY_ID }}
AWS_SECRET_ACCESS_KEY: ${{ secrets.AWS_S3_BLOCKS_CDN_SECRET_ACCESS_KEY }}
# --no-verify-access to use automation tokens https://github.com/lerna/lerna/issues/2788
# --ignore-scripts to aovoid scripts that could read npm token
# --yes to autoconfirm in ci
- name: publish to npm
run: yarn lerna:publish --ignore-scripts --yes
run: yarn lerna:publish --ignore-scripts --yes --no-verify-access
env:
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}
NODE_AUTH_TOKEN: ${{secrets.NPM_TOKEN}}
- name: Cache Docker layers
uses: actions/cache@v2

View File

@ -1,27 +0,0 @@
name: Test NPM Publish
on:
pull_request:
jobs:
publish:
runs-on: ubuntu-latest
environment: publish
steps:
- name: Setup Node
uses: actions/setup-node@v2
with:
node-version: '14.x'
registry-url: https://registry.npmjs.org/
- uses: actions/checkout@v2
- name: yarn install
run: yarn install
- name: yarn build
run: yarn build
- name: publish to npm
run: yarn lerna publish from-package ---ignore-scripts --yes --no-verify-access
env:
NODE_AUTH_TOKEN: ${{secrets.NPM_TOKEN}}