From 4cc599d34ee8c568aff08cd48bbae60ba031ff3a Mon Sep 17 00:00:00 2001 From: Emmanuel Knafo Date: Wed, 22 Jul 2026 15:29:57 -0400 Subject: [PATCH] fix(cicd): set git identity before creating annotated version tag The tag step used git tag -a but the GitHub runner has no committer identity, failing with 'Committer identity unknown'. Configure github-actions[bot] identity before tagging, matching the ADO step. Closes #72 --- .github/workflows/cicd.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.github/workflows/cicd.yml b/.github/workflows/cicd.yml index a18e9f9..20e52c7 100644 --- a/.github/workflows/cicd.yml +++ b/.github/workflows/cicd.yml @@ -234,6 +234,8 @@ jobs: Write-Host "Tag $tag already exists on origin; skipping." exit 0 } + & git config user.email "github-actions[bot]@users.noreply.github.com" + & git config user.name "github-actions[bot]" & git tag -a $tag -m "Release $tag" & git push origin $tag Write-Host "Created and pushed git tag $tag."