From 02eb6a4bc925837079bf5f1ec835fbbd0f9fe4d4 Mon Sep 17 00:00:00 2001 From: Meliox <5264368+Meliox@users.noreply.github.com> Date: Sun, 9 Aug 2026 11:35:27 +0200 Subject: [PATCH] fix (#257) Co-authored-by: Meliox --- .github/workflows/version-bump.yml | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/.github/workflows/version-bump.yml b/.github/workflows/version-bump.yml index 659d894..2f66d1c 100644 --- a/.github/workflows/version-bump.yml +++ b/.github/workflows/version-bump.yml @@ -99,12 +99,11 @@ jobs: mv debian/changelog.new debian/changelog - name: Commit changelog and clean up accumulator - env: - NEW_VERSION: ${{ steps.version.outputs.new }} run: | git config user.name "github-actions[bot]" git config user.email "41898282+github-actions[bot]@users.noreply.github.com" + git checkout -b release/v${{ steps.version.outputs.new }} git add debian/changelog git rm --ignore-unmatch .github/version-bump/CHANGES.md - git commit -m "Release v${NEW_VERSION}" - git push \ No newline at end of file + git commit -m "Release v${{ steps.version.outputs.new }}" + git push -u origin release/v${{ steps.version.outputs.new }} \ No newline at end of file