From 32c67e01326374f0365602f61542a3639a8f121b Mon Sep 17 00:00:00 2001 From: Patrick szymkowiak Date: Wed, 25 Mar 2026 12:47:18 +0100 Subject: [PATCH] fix(cicd): use dev- prefix for pre-release tags to avoid polluting release-please Pre-release tags on develop used v* prefix (e.g. v0.33.1-rc.60) which release-please interpreted as the latest version, causing it to generate wrong release versions. Changed to dev- prefix (e.g. dev-0.34.0-rc.61) so release-please only sees stable v* tags. Cleaned up: 42 RC releases and tags deleted. Signed-off-by: Patrick szymkowiak --- .github/workflows/cd.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/cd.yml b/.github/workflows/cd.yml index 1d29a855..393f9e50 100644 --- a/.github/workflows/cd.yml +++ b/.github/workflows/cd.yml @@ -68,7 +68,7 @@ jobs: fi fi VERSION="${MAJOR}.${MINOR}.${PATCH}" - TAG="v${VERSION}-rc.${{ github.run_number }}" + TAG="dev-${VERSION}-rc.${{ github.run_number }}" echo "Next version: $VERSION (from $LATEST_VERSION)" echo "Pre-release tag: $TAG"