Skip to content

Commit

Permalink
fix(ci): remove additional v
Browse files Browse the repository at this point in the history
Signed-off-by: Aaron <[email protected]>
  • Loading branch information
aarnphm committed Mar 15, 2024
1 parent 24f7e3d commit cf60e55
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/actions/release.sh
Original file line number Diff line number Diff line change
Expand Up @@ -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)"
Expand Down

0 comments on commit cf60e55

Please sign in to comment.