Skip to content

Commit

Permalink
checkout branch
Browse files Browse the repository at this point in the history
  • Loading branch information
dawkaka committed Jul 15, 2024
1 parent 062fd97 commit 664d9ab
Showing 1 changed file with 11 additions and 0 deletions.
11 changes: 11 additions & 0 deletions .github/workflows/release_package.yml
Original file line number Diff line number Diff line change
Expand Up @@ -46,6 +46,17 @@ jobs:
- name: Bump version
run: npm version ${{ env.NEW_VERSION }} --no-git-tag-version

- name: Create and checkout temporary branch
run: |
git branch temp-branch
git checkout temp-branch
# Commit changes
- name: Commit CHANGELOG.md and package.json changes and create tag
run: |
git add "package.json"
git commit -m "chore: release ${{ env.NEW_VERSION }}"
# Push repository changes
- name: Push changes to repository
env:
Expand Down

0 comments on commit 664d9ab

Please sign in to comment.