Skip to content

Commit b783b05

Browse files
committed
feat: add ci & cd integration
1 parent 527f0bb commit b783b05

File tree

1 file changed

+2
-6
lines changed

1 file changed

+2
-6
lines changed

.github/workflows/cd.yml

Lines changed: 2 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -90,17 +90,13 @@ jobs:
9090
while read line; do
9191
case "$line" in
9292
*'feat:'*)
93+
echo "has_feat=true because of [$line]"
9394
has_feat=true
9495
;;
95-
*'fix:'*)
96-
patch=$((patch + 1))
97-
;;
9896
*'BREAKING CHANGE:'*)
97+
echo "has_breaking_change=true because of [$line]"
9998
has_breaking_change=true
10099
;;
101-
*)
102-
patch=$((patch + 1))
103-
;;
104100
esac
105101
done
106102
if [ "$has_breaking_change" = true ]; then

0 commit comments

Comments
 (0)