We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c9cf884 commit e5712f7Copy full SHA for e5712f7
.github/workflows/deploy.yml
@@ -46,7 +46,7 @@ jobs:
46
continue
47
fi
48
49
- if [[ $in_changelog -eq 1 && $(echo "$line" | grep -E '^==') ]]; then
+ if [[ $in_changelog -eq 1 && "$line" =~ ^== ]]; then
50
break
51
52
@@ -60,7 +60,8 @@ jobs:
60
exit 1
61
62
63
- echo "RELEASE_NOTES=$release_notes" >> $GITHUB_ENV
+ # Use printf to handle newlines correctly
64
+ echo -e "RELEASE_NOTES=$release_notes" >> $GITHUB_ENV
65
source $GITHUB_ENV # Ensure the environment variable is available for subsequent steps
66
67
- name: Create zip file
0 commit comments