From d2dcbfc5747190ad83093c7364491526bb724516 Mon Sep 17 00:00:00 2001 From: InvalidUsernameException Date: Sat, 15 Aug 2026 22:54:24 +0200 Subject: [PATCH] [build] Support release tags that shadow branch names (#17409) Authored by: InvalidUsernameException --- .github/workflows/release.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index a2b5887f33..505141e042 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -316,7 +316,7 @@ jobs: if: env.TARGET_REPO == github.repository run: | git tag "${TARGET_TAG}" "${HEAD_SHA}" - git push origin "${TARGET_TAG}" + git push origin "refs/tags/${TARGET_TAG}" sleep 5 # Enough time to cover git-push vs gh-release-create race condition - name: Publish release