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 16b3b05 commit 94d7829Copy full SHA for 94d7829
.github/workflows/tag-with-gitversion.yml
@@ -36,7 +36,8 @@ jobs:
36
# increment minor and set patch to 0
37
NEW_MINOR=$((MINOR + 1))
38
TAG="v${MAJOR}.${NEW_MINOR}.0"
39
-
+ git config user.name github-actions[bot]
40
+ git config user.email 41898282+github-actions[bot]@users.noreply.github.com
41
git tag -a $TAG -m "Tag created by GitHub Actions using GitVersion (incremented minor)"
42
git push origin $TAG
43
0 commit comments