From c24f8933fb9d6cf87ee0a123f7c71af0878acd9f Mon Sep 17 00:00:00 2001 From: Conrad Date: Fri, 25 Oct 2024 14:38:58 +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 a9f85f2..c773564 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}${increment}" >> $GITHUB_ENV + echo "V_FORMAT=${major}.${minor}.${patch}-prerelease${increment}" >> $GITHUB_ENV fi - name: Git Version