Skip to content

Commit a00f267

Browse files
committed
fix: remove v prefix from semantic release
1 parent b6f53e9 commit a00f267

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

scripts/prepare-release.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ if [ "$#" -ne 1 ]; then
77
fi
88

99
# Assign the new version from the argument
10-
NEW_VERSION="$1"
10+
NEW_VERSION=`echo $1 | cut -d'v' -f2` # Version should come from semantic release with a 'v' prefix
1111

1212
# Navigate to the parent folder of the script
1313
SCRIPT_DIR="$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)"

0 commit comments

Comments
 (0)