From be630b6e43ef35a3ea4bd01ad78c56c9b8e76637 Mon Sep 17 00:00:00 2001 From: godcong Date: Tue, 26 Nov 2024 18:56:59 +0800 Subject: [PATCH] chore(ci): set git identity before running tag script - Configure git user.email and user.name for the GitHub Actions bot - Ensure proper git configuration for automated tag creation --- .github/workflows/after_release.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.github/workflows/after_release.yml b/.github/workflows/after_release.yml index 4b52fa7..a12cf9c 100644 --- a/.github/workflows/after_release.yml +++ b/.github/workflows/after_release.yml @@ -24,6 +24,8 @@ jobs: - name: Run tag script run: | + git config --local user.email "github-actions[bot]@users.noreply.github.com" + git config --local user.name "github-actions[bot]" chmod +x ./scripts/tag.sh ./scripts/tag.sh