disable committing changelog on release

This commit is contained in:
CaCO3
2023-02-05 20:27:02 +01:00
committed by GitHub
parent f7fc55960b
commit 01df45f1e1

View File

@@ -358,15 +358,15 @@ jobs:
files: | files: |
release/* release/*
# Commit&Push Changelog to master branch. Must be manually merged back to rolling # # Commit&Push Changelog to master branch. Must be manually merged back to rolling
- name: Commit changes and push changes # - name: Commit changes and push changes
if: startsWith(github.ref, 'refs/tags/') # if: startsWith(github.ref, 'refs/tags/')
run: | # run: |
git config user.name github-actions # git config user.name github-actions
git config user.email github-actions@github.com # git config user.email github-actions@github.com
git add Changelog.md # git add Changelog.md
git commit Changelog.md -m "Update Changelog.md for ${{github.event.inputs.versionIncrement}} release" # git commit Changelog.md -m "Update Changelog.md for ${{github.event.inputs.versionIncrement}} release"
git push origin HEAD:master # git push origin HEAD:master
######################################################################################### #########################################################################################