File tree 1 file changed +4
-3
lines changed
1 file changed +4
-3
lines changed Original file line number Diff line number Diff line change @@ -46,12 +46,13 @@ jobs:
46
46
git config user.email [email protected]
47
47
shell : bash
48
48
# This ensures the local version of Lerna is installed
49
- # and that we do not use the global Lerna version
49
+ # and that we do not use the global Lerna version. We currently
50
+ # rely on functionality that does not exist in newer versions of Lerna.
50
51
- name : Install root dependencies
51
52
run : npm ci
52
53
shell : bash
53
54
- name : Create GitHub Release
54
- run : npx lerna version ${{ inputs.version }} --yes --force-publish='*' --conventional-commits --create-release github
55
+ run : npx lerna@5 version ${{ inputs.version }} --yes --force-publish='*' --conventional-commits --create-release github
55
56
env :
56
57
GH_TOKEN : ${{ secrets.GITHUB_TOKEN }}
57
58
shell : bash
87
88
# so we do that here.
88
89
- name : Bump Package Lock
89
90
run : |
90
- npx lerna exec "npm install --package-lock-only --legacy-peer-deps"
91
+ npx lerna@5 exec "npm install --package-lock-only --legacy-peer-deps"
91
92
git add .
92
93
git commit -m "chore(): update package lock files"
93
94
git push
You can’t perform that action at this time.
0 commit comments