From cf60e55dfafdbf3a978615dc8de46778aa058c4f Mon Sep 17 00:00:00 2001 From: Aaron <29749331+aarnphm@users.noreply.github.com> Date: Fri, 15 Mar 2024 04:41:31 -0400 Subject: [PATCH] fix(ci): remove additional v Signed-off-by: Aaron <29749331+aarnphm@users.noreply.github.com> --- .github/actions/release.sh | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/actions/release.sh b/.github/actions/release.sh index ad3762a4..17dc145e 100755 --- a/.github/actions/release.sh +++ b/.github/actions/release.sh @@ -119,12 +119,12 @@ fi # Construct the new version string if [ -n "$ALPHA" ]; then if ((ALPHA_NUM > 0)); then - RELEASE_VERSION="v$VNUM1.$VNUM2.$VNUM3-alpha.$ALPHA_NUM" + RELEASE_VERSION="$VNUM1.$VNUM2.$VNUM3-alpha.$ALPHA_NUM" else - RELEASE_VERSION="v$VNUM1.$VNUM2.$VNUM3-alpha" + RELEASE_VERSION="$VNUM1.$VNUM2.$VNUM3-alpha" fi else - RELEASE_VERSION="v$VNUM1.$VNUM2.$VNUM3" + RELEASE_VERSION="$VNUM1.$VNUM2.$VNUM3" fi echo "Commit count: $(git rev-list --count HEAD)"