This commit is contained in:
Meliox 2026-08-09 11:34:44 +02:00
parent 67ec8f93df
commit 1c04d5fae8

View File

@ -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
git commit -m "Release v${{ steps.version.outputs.new }}"
git push -u origin release/v${{ steps.version.outputs.new }}