From 96070416d81e07a6b981aa20453233154f98fa49 Mon Sep 17 00:00:00 2001 From: dotnetprog <24593889+dotnetprog@users.noreply.github.com> Date: Thu, 28 Aug 2025 12:33:07 -0400 Subject: [PATCH] fix gh action for tag --- .github/workflows/tag-with-gitversion.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/workflows/tag-with-gitversion.yml b/.github/workflows/tag-with-gitversion.yml index 2270cf6..056aaae 100644 --- a/.github/workflows/tag-with-gitversion.yml +++ b/.github/workflows/tag-with-gitversion.yml @@ -36,7 +36,8 @@ jobs: # increment minor and set patch to 0 NEW_MINOR=$((MINOR + 1)) TAG="v${MAJOR}.${NEW_MINOR}.0" - + git config user.name github-actions[bot] + git config user.email 41898282+github-actions[bot]@users.noreply.github.com git tag -a $TAG -m "Tag created by GitHub Actions using GitVersion (incremented minor)" git push origin $TAG