Skip to content

Commit 94d7829

Browse files
authored
fix gh action for tag (#19)
1 parent 16b3b05 commit 94d7829

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

.github/workflows/tag-with-gitversion.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,8 @@ jobs:
3636
# increment minor and set patch to 0
3737
NEW_MINOR=$((MINOR + 1))
3838
TAG="v${MAJOR}.${NEW_MINOR}.0"
39-
39+
git config user.name github-actions[bot]
40+
git config user.email 41898282+github-actions[bot]@users.noreply.github.com
4041
git tag -a $TAG -m "Tag created by GitHub Actions using GitVersion (incremented minor)"
4142
git push origin $TAG
4243

0 commit comments

Comments
 (0)