File tree Expand file tree Collapse file tree 1 file changed +6
-2
lines changed Expand file tree Collapse file tree 1 file changed +6
-2
lines changed Original file line number Diff line number Diff line change 17
17
uses : actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11
18
18
with :
19
19
fetch-depth : 0
20
+ - name : Install jq
21
+ run : |
22
+ sudo apt-get update
23
+ sudo apt-get install jq
20
24
- name : Install dependencies
21
25
run : npm install
22
26
- name : Build all packages
@@ -29,10 +33,10 @@ jobs:
29
33
npm set "//registry.npmjs.org/:_authToken=${{ secrets.NPM_TOKEN }}"
30
34
- name : Version
31
35
run : |
32
- npx lerna version minor --force-publish -- no-changelog --no-commit-hooks --yes
36
+ npx lerna version minor --no-changelog --no-commit-hooks --no-private --yes
33
37
- name : Release packages
34
38
run : |
35
- npx lerna publish from-git --no-private --no-changelog --yes
39
+ npx lerna publish from-git --no-private --no-changelog --yes --throttle --throttle-size 1 --throttle-delay 2
36
40
env :
37
41
GITHUB_TOKEN : ${{ secrets.GITHUB_TOKEN }}
38
42
NPM_TOKEN : ${{ secrets.NPM_TOKEN }}
You can’t perform that action at this time.
0 commit comments