From d39fa6e3068e828fb3a2a8dc69bdce0cd5e96a4d Mon Sep 17 00:00:00 2001 From: Aman Varshney Date: Sat, 13 Sep 2025 07:53:36 +0530 Subject: [PATCH] chore: update git config in release workflow --- .github/workflows/release.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/release.yaml b/.github/workflows/release.yaml index e588669..d4b797b 100644 --- a/.github/workflows/release.yaml +++ b/.github/workflows/release.yaml @@ -29,8 +29,8 @@ jobs: - name: Create and push tag if: steps.version.outputs.version != '' run: | - git config --local user.email "github-actions[bot]@users.noreply.github.com" - git config --local user.name "github-actions[bot]" + git config --local user.email "amanvarshney.work@gmail.com" + git config --local user.name "Aman Varshney" # Check if tag exists before creating if ! git rev-parse "v${{ steps.version.outputs.version }}" >/dev/null 2>&1; then git tag -a "v${{ steps.version.outputs.version }}" -m "Release v${{ steps.version.outputs.version }}"