Skip to content

Commit

Permalink
cd: fix the step of generate release version
Browse files Browse the repository at this point in the history
  • Loading branch information
brunograna committed Feb 18, 2024
1 parent a595e58 commit 3e19a7d
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions .github/workflows/cd.yml
Original file line number Diff line number Diff line change
Expand Up @@ -87,6 +87,9 @@ jobs:
*'BREAKING CHANGE:'*)
major=$((major + 1))
;;
*)
patch=$((patch + 1))
;;
esac
done < <(git log --pretty=format:"%h %s" "$commit_range")
if [ $major -gt 0 ]; then
Expand Down

0 comments on commit 3e19a7d

Please sign in to comment.