From 7ee931080d09a5a989940bf3c6586c0cc6718c92 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Bence=20H=C3=A9zs=C5=91?= Date: Sat, 25 Jul 2026 10:16:04 +0200 Subject: [PATCH] fix release tag push --- .github/workflows/release.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 2349fbe..f714524 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -44,5 +44,5 @@ jobs: git config user.name "github-actions[bot]" git config user.email "github-actions[bot]@users.noreply.github.com" git commit -am "Release v$v" - git tag "v$v" - git push origin HEAD --follow-tags + git tag -a "v$v" -m "Release v$v" + git push origin HEAD "refs/tags/v$v"