mirror of
https://github.com/lowdefy/lowdefy.git
synced 2025-03-31 15:20:32 +08:00
fix: Fix lerna npm publish on release action.
This commit is contained in:
parent
92f4b88e2f
commit
9469148d09
8
.github/workflows/release.yaml
vendored
8
.github/workflows/release.yaml
vendored
@ -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
|
||||
|
27
.github/workflows/test-npm-publish.yml
vendored
27
.github/workflows/test-npm-publish.yml
vendored
@ -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}}
|
Loading…
x
Reference in New Issue
Block a user