We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0184074 commit 61cc278Copy full SHA for 61cc278
.github/workflows/release.yml
@@ -55,6 +55,15 @@ jobs:
55
env:
56
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
57
shell: bash
58
+ # Lerna does not automatically bump versions
59
+ # of Ionic dependencies that have changed,
60
+ # so we do that here.
61
+ - name: Bump Package Lock
62
+ run: |
63
+ lerna exec "npm install --package-lock-only --legacy-peer-deps"
64
+ git add .
65
+ git commit -m "chore(): update package lock files"
66
+ git push
67
# Purge the JSDeliver CDN cache so
68
# component playgrounds always load
69
# the latest version of Ionic.
0 commit comments