Skip to content

Commit

Permalink
fix: fix the release note description
Browse files Browse the repository at this point in the history
  • Loading branch information
brunograna committed Feb 19, 2024
1 parent 86c14c6 commit 5aeabd2
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions .github/workflows/cd.yml
Original file line number Diff line number Diff line change
Expand Up @@ -87,6 +87,7 @@ jobs:
has_feat=false
has_breaking_change=false
while IFS= read -r line; do
echo $line
case "$line" in
*'feat:'*)
echo "has_feat=true because of [$line]"
Expand Down Expand Up @@ -136,6 +137,7 @@ jobs:
echo "## What's changed" > release_notes.md
git log --pretty=format:"%h %s by @%an" ${{ steps.previous_tag.outputs.previous_tag }}..${{ steps.version.outputs.new_version }} | \
while read line; do
echo $line
case "$line" in
*'feat:'*)
echo "* **Feature:** ${line#*:}" >> release_notes.md
Expand Down

0 comments on commit 5aeabd2

Please sign in to comment.