From 0146e9993cf258b6385b94d61f743501b80f135b Mon Sep 17 00:00:00 2001 From: Jacobus Geluk Date: Fri, 14 Aug 2026 11:32:54 +0100 Subject: [PATCH] fix(release): configure annotated tag identity --- .github/workflows/ci.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 60d1eeb..fa99623 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -146,6 +146,8 @@ jobs: env: VERSION: ${{ needs.version.outputs.number }} run: | + git config user.name "github-actions[bot]" + git config user.email "41898282+github-actions[bot]@users.noreply.github.com" git tag -a "v$VERSION" -m "Release v$VERSION" git push origin "v$VERSION"