Skip to content

Commit

Permalink
feat: add ci & cd integration
Browse files Browse the repository at this point in the history
  • Loading branch information
brunograna committed Feb 19, 2024
1 parent 527f0bb commit b783b05
Showing 1 changed file with 2 additions and 6 deletions.
8 changes: 2 additions & 6 deletions .github/workflows/cd.yml
Original file line number Diff line number Diff line change
Expand Up @@ -90,17 +90,13 @@ jobs:
while read line; do
case "$line" in
*'feat:'*)
echo "has_feat=true because of [$line]"
has_feat=true
;;
*'fix:'*)
patch=$((patch + 1))
;;
*'BREAKING CHANGE:'*)
echo "has_breaking_change=true because of [$line]"
has_breaking_change=true
;;
*)
patch=$((patch + 1))
;;
esac
done
if [ "$has_breaking_change" = true ]; then
Expand Down

0 comments on commit b783b05

Please sign in to comment.