Skip to content

Commit

Permalink
Update release.yml (#139)
Browse files Browse the repository at this point in the history
  • Loading branch information
andykog authored Dec 4, 2024
1 parent 35f25b2 commit 84ab3e2
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,8 +20,11 @@ jobs:
gh auth setup-git
git config --global user.name 'Release'
git config --global user.email '[email protected]'
git commit -am "Bump version ($VERSION)"
git push
git checkout -b "bump-version-$VERSION"
git commit -am "chore: Bump version ($VERSION)"
PR_URL="$(gh pr create --title "chore: Bump version ($VERSION)")"
gh pr merge --auto -r "$PR_URL"
gh pr merge --auto
gh release create "$VERSION" \
--repo="$GITHUB_REPOSITORY" \
--title="${VERSION#v}" \
Expand Down

0 comments on commit 84ab3e2

Please sign in to comment.