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.
2 parents ce18550 + cfcba4e commit 67633b3Copy full SHA for 67633b3
.github/workflows/deploy.yml
@@ -72,7 +72,7 @@ jobs:
72
fi
73
74
# Break if a new version header is found after the current version
75
- if [[ $found_version -eq 1 && "$line" =~ ^\= [0-9]+\.[0-9]+\.[0-9]+ \=$ ]]; then
+ if [[ $found_version -eq 1 && "$line" =~ ^\= [0-9]+\.[0-9]+\.[0-9]+\ =$ ]]; then
76
echo "DEBUG: Found a new version header. Stopping collection."
77
break
78
@@ -102,7 +102,7 @@ jobs:
102
# Write the release notes with actual line breaks
103
echo "RELEASE_NOTES<<EOF" >> $GITHUB_ENV
104
echo -e "$release_notes" >> $GITHUB_ENV
105
- echo "EOF" >> $GITHUB_ENV
+ echo "EOF" >> $GITHUB_ENV
106
107
108
- name: Create zip file
0 commit comments