File tree Expand file tree Collapse file tree 2 files changed +4
-10
lines changed
Expand file tree Collapse file tree 2 files changed +4
-10
lines changed Original file line number Diff line number Diff line change @@ -3,9 +3,6 @@ name: Packages Deploy
33on :
44 push :
55
6- env :
7- SECRETS : ${{ toJSON(secrets) }}
8-
96jobs :
107 build :
118 name : Build Packages
2522 run : |
2623 npm install -g yarn
2724 echo "Yarn version: $(yarn -v)"
28- echo "//registry.npmjs.org/:_authToken=${{SECRETS .NPM_TOKEN}}" >> ~/.npmrc
25+ echo "//registry.npmjs.org/:_authToken=${{secrets .NPM_TOKEN}}" >> ~/.npmrc
2926
3027 - name : Install Dependencies
3128 run : yarn install --frozen-lockfile
5249 run : |
5350 npm install -g yarn
5451 echo "Yarn version: $(yarn -v)"
55- echo "//registry.npmjs.org/:_authToken=${{SECRETS .NPM_TOKEN}}" >> ~/.npmrc
52+ echo "//registry.npmjs.org/:_authToken=${{secrets .NPM_TOKEN}}" >> ~/.npmrc
5653
5754 - name : Install Dependencies
5855 run : yarn install --frozen-lockfile
6158 run : yarn build:packages
6259
6360 - name : Publish
64- run : lerna exec "npm publish --tag=latest --no-git-checks"
61+ run : lerna exec "npm publish --tag=latest --no-git-checks" --parallel
Original file line number Diff line number Diff line change @@ -2,9 +2,6 @@ name: Packages Deploy
22
33on : workflow_dispatch
44
5- env :
6- SECRETS : ${{ toJSON(secrets) }}
7-
85jobs :
96 publish :
107 name : Publish Dev Packages
2320 run : |
2421 npm install -g yarn
2522 echo "Yarn version: $(yarn -v)"
26- echo "//registry.npmjs.org/:_authToken=${{SECRETS .NPM_TOKEN}}" >> ~/.npmrc
23+ echo "//registry.npmjs.org/:_authToken=${{secrets .NPM_TOKEN}}" >> ~/.npmrc
2724
2825 - name : Install Dependencies
2926 run : yarn install --frozen-lockfile
You can’t perform that action at this time.
0 commit comments