From 356513375646047b61890600d71662a98411dc6a Mon Sep 17 00:00:00 2001 From: Gary Bezruchko Date: Tue, 24 Mar 2026 00:10:21 +0300 Subject: [PATCH] Fix git tag step in pipeline --- .github/workflows/publish.yml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.github/workflows/publish.yml b/.github/workflows/publish.yml index b5f5cd5..d0a5487 100644 --- a/.github/workflows/publish.yml +++ b/.github/workflows/publish.yml @@ -124,6 +124,9 @@ jobs: TAG="${{ steps.versioning.outputs.target_tag }}" + git config user.name "github-actions[bot]" + git config user.email "41898282+github-actions[bot]@users.noreply.github.com" + if git rev-parse "$TAG" >/dev/null 2>&1; then echo "Tag already exists locally: $TAG" exit 1