diff --git a/.github/workflows/version.yml b/.github/workflows/version.yml index 2e77819f..2c67a57e 100644 --- a/.github/workflows/version.yml +++ b/.github/workflows/version.yml @@ -62,8 +62,10 @@ jobs: - name: Push Changes if: ${{ inputs.push }} run: | + git config --global user.name "duploctl[bot]" + git config --global user.email "${{ vars.GH_APP_ID }}+duploctl[bot]@users.noreply.github.com" git add CHANGELOG.md - git commit -m "Bump version to ${{ steps.bump.outputs.version }}" + git commit -S -m "Bump version to ${{ steps.bump.outputs.version }}" git push origin HEAD:main --force git tag ${{ steps.bump.outputs.tag }} git push --tags