From f6a0762cca263fa53f24d9635872e5ea024c4ab4 Mon Sep 17 00:00:00 2001 From: Chip Kent <5250374+chipkent@users.noreply.github.com> Date: Wed, 5 Jun 2024 11:40:28 -0600 Subject: [PATCH] Make the semver for release canddiates valid (#124) --- .github/workflows/build-and-publish.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/build-and-publish.yml b/.github/workflows/build-and-publish.yml index 5e2e0543..b341b6db 100644 --- a/.github/workflows/build-and-publish.yml +++ b/.github/workflows/build-and-publish.yml @@ -58,7 +58,7 @@ jobs: then if [ "$GITHUB_REF" = "refs/heads/main" ] then - echo "::set-output name=version::0.0.0.rc" + echo "::set-output name=version::0.0.0.rc0" else PR_NUMBER=$(echo $GITHUB_REF | awk 'BEGIN { FS = "/" } ; { print $3 }') echo "::set-output name=version::0.0.0.dev${PR_NUMBER}"