mirror of
https://github.com/ionic-team/ionic-framework.git
synced 2025-08-18 03:00:58 +08:00
chore(): update release scripts (#25203)
This commit is contained in:
13
.github/workflows/release.yml
vendored
13
.github/workflows/release.yml
vendored
@ -26,6 +26,7 @@ jobs:
|
|||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@v2
|
- uses: actions/checkout@v2
|
||||||
with:
|
with:
|
||||||
|
token: ${{ secrets.IONITRON_TOKEN }}
|
||||||
fetch-depth: 0
|
fetch-depth: 0
|
||||||
- uses: actions/setup-node@v2
|
- uses: actions/setup-node@v2
|
||||||
with:
|
with:
|
||||||
@ -49,3 +50,15 @@ jobs:
|
|||||||
env:
|
env:
|
||||||
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
||||||
shell: bash
|
shell: bash
|
||||||
|
# Lerna does not automatically bump versions
|
||||||
|
# of Ionic dependencies that have changed,
|
||||||
|
# so we do that here.
|
||||||
|
- name: Bump Package Lock
|
||||||
|
run: |
|
||||||
|
lerna exec "npm install --package-lock-only"
|
||||||
|
git config user.name ionitron
|
||||||
|
git config user.email hi@ionicframework.com
|
||||||
|
git add .
|
||||||
|
git commit -m "chore(): update package lock files"
|
||||||
|
git push
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user