From b02e5c123b8f79d35cd779512af3086623a00ece Mon Sep 17 00:00:00 2001 From: Robert Burger Date: Tue, 5 Aug 2025 08:53:50 +0200 Subject: [PATCH] fix: pre release to separate repo --- .github/workflows/build-deb.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/build-deb.yaml b/.github/workflows/build-deb.yaml index 420f73c..1f56fd1 100644 --- a/.github/workflows/build-deb.yaml +++ b/.github/workflows/build-deb.yaml @@ -94,8 +94,8 @@ jobs: else if [[ ! $GITHUB_REF =~ ^refs/tags/ ]]; then # Not a tag, so add ~pre - FULL_VERSION="${VERSION}~${PRE_VERSION}-1~${CODENAME}" - dch -b --newversion "${FULL_VERSION}" --distribution "${CODENAME}" "Pre-release for ${CODENAME}" + FULL_VERSION="${VERSION}~${PRE_VERSION}-1~${CODENAME}-pre" + dch -b --newversion "${FULL_VERSION}" --distribution "${CODENAME}-pre" "Pre-release for ${CODENAME}-pre" else FULL_VERSION="${VERSION}-1~${CODENAME}" dch --newversion "${FULL_VERSION}" --distribution "${CODENAME}" "Pre-release for ${CODENAME}"