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 87f5840 commit 2fbd621Copy full SHA for 2fbd621
.github/workflows/release.yml
@@ -26,6 +26,7 @@ jobs:
26
steps:
27
- uses: actions/checkout@v2
28
with:
29
+ token: ${{ secrets.IONITRON_TOKEN }}
30
fetch-depth: 0
31
- uses: actions/setup-node@v2
32
@@ -49,3 +50,15 @@ jobs:
49
50
env:
51
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
52
shell: bash
53
+ # Lerna does not automatically bump versions
54
+ # of Ionic dependencies that have changed,
55
+ # so we do that here.
56
+ - name: Bump Package Lock
57
+ run: |
58
+ lerna exec "npm install --package-lock-only"
59
+ git config user.name ionitron
60
+ git config user.email hi@ionicframework.com
61
+ git add .
62
+ git commit -m "chore(): update package lock files"
63
+ git push
64
+
0 commit comments