We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent bb122d6 commit 9608680Copy full SHA for 9608680
.github/workflows/release.yml
@@ -78,8 +78,8 @@ jobs:
78
tag: ${{ steps.tag_name.outputs.tag }}
79
message: "Release ${{ steps.tag_name.outputs.tag }}"
80
run: |
81
- git config user.name "${GITHUB_ACTOR}"
82
- git config user.email "${GITHUB_ACTOR}@users.noreply.github.com"
+ git config user.name "$(git log -1 --pretty='%cn')"
+ git config user.email "$(git log -1 --pretty='%ce')"
83
git tag -a "$tag" HEAD -m "$message"
84
git push origin "$tag"
85
0 commit comments