Co-authored-by: Meliox <na>
This commit is contained in:
Meliox 2026-08-09 11:35:27 +02:00 committed by GitHub
parent 67ec8f93df
commit 02eb6a4bc9
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -99,12 +99,11 @@ jobs:
mv debian/changelog.new debian/changelog mv debian/changelog.new debian/changelog
- name: Commit changelog and clean up accumulator - name: Commit changelog and clean up accumulator
env:
NEW_VERSION: ${{ steps.version.outputs.new }}
run: | run: |
git config user.name "github-actions[bot]" git config user.name "github-actions[bot]"
git config user.email "41898282+github-actions[bot]@users.noreply.github.com" 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 add debian/changelog
git rm --ignore-unmatch .github/version-bump/CHANGES.md git rm --ignore-unmatch .github/version-bump/CHANGES.md
git commit -m "Release v${NEW_VERSION}" git commit -m "Release v${{ steps.version.outputs.new }}"
git push git push -u origin release/v${{ steps.version.outputs.new }}