Skip to content

Commit

Permalink
Merge pull request #39 from codeboxrcodehub/dev
Browse files Browse the repository at this point in the history
wtf3
  • Loading branch information
manchumahara authored Jan 22, 2025
2 parents 67633b3 + 491d066 commit fd14e61
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -72,13 +72,13 @@ jobs:
fi
# Break if a new version header is found after the current version
if [[ $found_version -eq 1 && "$line" =~ ^\= [0-9]+\.[0-9]+\.[0-9]+\ =$ ]]; then
if [[ $found_version -eq 1 ]] && echo "$line" | grep -qE '^= [0-9]+\.[0-9]+\.[0-9]+ =$'; then
echo "DEBUG: Found a new version header. Stopping collection."
break
fi
# Collect lines starting with '*' if we are in the current version section
if [[ $found_version -eq 1 && "$line" =~ ^\* ]]; then
if [[ $found_version -eq 1 ]] && echo "$line" | grep -qE '^\*'; then
echo "DEBUG: Found changelog entry: $line"
release_notes+="${line}\n"
continue
Expand Down

0 comments on commit fd14e61

Please sign in to comment.