Skip to content

Commit b9114ac

Browse files
committed
fix: correct version bump logic for minor updates
1 parent ab8d2c3 commit b9114ac

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

.github/workflows/release.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ jobs:
4141
MAJOR=$((MAJOR + 1))
4242
MINOR=0
4343
PATCH=0
44-
elif echo "$COMMITS" | grep -qiE "^(feat|feature|minor):"; then
44+
elif echo "$COMMITS" | grep -qiE "^(feat|feature)|^Bump:" then
4545
MINOR=$((MINOR + 1))
4646
PATCH=0
4747
else

0 commit comments

Comments
 (0)