diff --git a/.github/workflows/tag.yml b/.github/workflows/tag.yml index 03ded0d..c7f5b67 100644 --- a/.github/workflows/tag.yml +++ b/.github/workflows/tag.yml @@ -23,5 +23,7 @@ jobs: - name: Create tag id: create_tag run: | + git config user.name "GitHub Actions" + git config user.email "41898282+github-actions[bot]@users.noreply.github.com" git tag -a v${{ github.event.inputs.tag || steps.get_version.outputs.version }} -m "Tagging version v${{ github.event.inputs.tag || steps.get_version.outputs.version }}" git push origin v${{ github.event.inputs.tag || steps.get_version.outputs.version }} \ No newline at end of file