From 7b43e1dcf75fcac6517a78ea395d98bd6d37dbb7 Mon Sep 17 00:00:00 2001 From: ospab Date: Wed, 8 Jul 2026 18:20:45 +0300 Subject: [PATCH] ci: prefix rolling-channel release tags with "v" for consistency MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Stable releases were already "vX.Y.Z" (from the actual git tag pushed for that channel), but nightly/beta tags were bare "X.Y.Z-nightly"/"X.Y.Z-beta" — inconsistent with the v-prefixed convention used everywhere else. Every channel's tag now starts with v: "vX.Y.Z-nightly", "vX.Y.Z-beta", "vX.Y.Z". --- .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 0ea4312..74a31ba 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -83,7 +83,7 @@ jobs: fi if [ "$CHANNEL" != "stable" ]; then - TAG="${BASE_VERSION}-${CHANNEL}" + TAG="v${BASE_VERSION}-${CHANNEL}" fi echo "Resolved channel=$CHANNEL tag=$TAG (base version $BASE_VERSION)"