Skip to content

Commit 3887cab

Browse files
committed
build: enable releasing specific version manually
1 parent 9528e32 commit 3887cab

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

start.sh

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,11 @@ case "${1-}" in
4040
exit 1
4141
fi
4242

43-
VERSION=$(git-conventional-commits version)
43+
if [[ -n "$2" ]] ; then
44+
VERSION="$2"
45+
else
46+
VERSION=$(git-conventional-commits version)
47+
fi
4448
echo "-- creating release for version ${VERSION}"
4549

4650
echo "-- patching package{,-lock}.json"

0 commit comments

Comments
 (0)