Skip to content

Commit 1a20bc6

Browse files
authored
chore: add quick fix to release cycle
1 parent 71bbc08 commit 1a20bc6

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

.github/workflows/release.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -44,6 +44,7 @@ jobs:
4444
case "$COMMIT_MESSAGE" in
4545
feat!*) MAJOR=$((MAJOR + 1)); MINOR=0; PATCH=0 ;;
4646
feat:*) MINOR=$((MINOR + 1)); PATCH=0 ;;
47+
fix!:*) PATCH=$((PATCH + 1)) ;;
4748
fix:*) PATCH=$((PATCH + 1)) ;;
4849
esac
4950

0 commit comments

Comments
 (0)