Skip to content

Commit 2fbd621

Browse files
authored
chore(): update release scripts (#25203)
1 parent 87f5840 commit 2fbd621

File tree

1 file changed

+13
-0
lines changed

1 file changed

+13
-0
lines changed

.github/workflows/release.yml

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,7 @@ jobs:
2626
steps:
2727
- uses: actions/checkout@v2
2828
with:
29+
token: ${{ secrets.IONITRON_TOKEN }}
2930
fetch-depth: 0
3031
- uses: actions/setup-node@v2
3132
with:
@@ -49,3 +50,15 @@ jobs:
4950
env:
5051
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
5152
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

Comments
 (0)