From 0bed0e0da4ac4d9216ab7712b8f8de85e81922e8 Mon Sep 17 00:00:00 2001 From: Conrad Date: Fri, 25 Oct 2024 14:34:56 +0200 Subject: [PATCH] fix: attempt on fixing the versioning issue --- .github/workflows/ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index d4a7a9d..a9f85f2 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -70,7 +70,7 @@ jobs: if [[ "${{ github.head_ref }}" == "master" ]]; then echo "V_FORMAT=${major}.${minor}.${patch}" >> $GITHUB_ENV elif [[ "${{ github.head_ref }}" == "dev" ]]; then - echo "V_FORMAT=${major}.${minor}.${patch}-rc${increment}" >> $GITHUB_ENV + echo "V_FORMAT=${major}.${minor}.${patch}${increment}" >> $GITHUB_ENV fi - name: Git Version