From 3ce56a996b7c2e9ccc85375ea4ed14f638e4daf3 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Juan=20Antonio=20Fern=C3=A1ndez=20de=20Alba?= Date: Wed, 1 Jul 2026 16:25:49 +0200 Subject: [PATCH] Make release tags ignore tag signing config --- scripts/release-action.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/scripts/release-action.sh b/scripts/release-action.sh index e74d512..b0b2afd 100755 --- a/scripts/release-action.sh +++ b/scripts/release-action.sh @@ -294,8 +294,8 @@ if [[ "$dry_run" == "true" ]]; then exit 0 fi -git tag "$next_tag" "$target_sha" -git tag -f "$major_tag" "$target_sha" +git tag --no-sign "$next_tag" "$target_sha" +git tag --no-sign -f "$major_tag" "$target_sha" git push "$remote" "refs/tags/$next_tag" git push --force "$remote" "refs/tags/$major_tag"