Skip to content

Commit

Permalink
TENT-5976 fix: Also commit changes to package-log.json after version …
Browse files Browse the repository at this point in the history
…bumps in release workflow
  • Loading branch information
sebastianbarth-disy committed Nov 7, 2024
1 parent 794c27f commit 08a6953
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 0 deletions.
1 change: 1 addition & 0 deletions .github/workflows/branchOffCadenzaVersion.yml
Original file line number Diff line number Diff line change
Expand Up @@ -58,6 +58,7 @@ jobs:
- name: Commit and tag changes
run: |
git add "package.json"
git add "package-lock.json"
git commit -m "chore: branch off main as ${{ env.BRANCH_NAME }} and bump main version to ${{ env.NEW_VERSION }}"
- name: Push changes
Expand Down
2 changes: 2 additions & 0 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -53,6 +53,7 @@ jobs:
- name: Commit release and tag it
run: |
git add "package.json"
git add "package-lock.json"
git add "CHANGELOG.md"
git commit -m "chore: release ${{ env.RELEASE_VERSION }}"
git tag ${{ env.RELEASE_VERSION }}
Expand Down Expand Up @@ -94,6 +95,7 @@ jobs:
- name: Commit version bump
run: |
git add "package.json"
git add "package-lock.json"
git commit -m "chore: bump up version to ${{ env.DEV_VERSION }}"
- name: Push changes
Expand Down

0 comments on commit 08a6953

Please sign in to comment.