Skip to content

Commit 3cfeccc

Browse files
committed
fix: 🐛 correct the bump script
1 parent 4e503c4 commit 3cfeccc

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

scripts/version-bump.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
# - no-bump: otherwise
1212

1313
# Get the last version tag
14-
LAST_TAG=$(git describe --tags --match "v*.*.*" 2>/dev/null || echo "")
14+
LAST_TAG=$(git describe --tags --match "v*.*.*" --abbrev=0 2>/dev/null || echo "")
1515

1616
if [ -z "$LAST_TAG" ]; then
1717
# No previous tag found, get all commits

0 commit comments

Comments
 (0)