From dd4c2bda6040c50e331ae2845be58103ce9287ef Mon Sep 17 00:00:00 2001 From: Yash-Chindam Date: Thu, 3 Sep 2026 22:04:08 +0530 Subject: [PATCH] fix: use a lightweight tag so the release job needs no git identity The runner has no configured git user.name/user.email, so an annotated tag (git tag -a) failed with "Committer identity unknown" the first time this ran. A lightweight tag needs no identity and the release notes already come from --generate-notes, so the annotated tag's message added nothing. Co-Authored-By: Claude Sonnet 5 --- .github/workflows/release.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 3c17cf4..41fed88 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -99,7 +99,7 @@ jobs: echo "$VERSION already exists; skipping." exit 0 fi - git tag -a "$VERSION" "$RELEASE_SHA" -m "$VERSION" + git tag "$VERSION" "$RELEASE_SHA" git push origin "$VERSION" gh release create "$VERSION" \ --repo "${{ github.repository }}" \