chore: sync with main

This commit is contained in:
Liam DeBeasi
2023-12-19 11:58:49 -05:00

View File

@ -72,16 +72,25 @@ 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, update-package-lock:
# so we do that here. # This needs to run after finalize-release
- name: Bump Package Lock # because we also push to the repo in that
run: | # job. If these jobs ran in parallel then it is
pnpm install --lockfile-only # possible for them to push at the same time.
git add . needs: [finalize-release]
git commit -m "chore(): update package lock files" runs-on: ubuntu-latest
git push steps:
shell: bash # Lerna does not automatically bump versions
# of Ionic dependencies that have changed,
# so we do that here.
- name: Bump Package Lock
run: |
pnpm install --lockfile-only
git add .
git commit -m "chore(): update package lock files"
git push
shell: bash
purge-cdn-cache: purge-cdn-cache:
needs: [release-ionic] needs: [release-ionic]