Skip to content

Commit

Permalink
Update
Browse files Browse the repository at this point in the history
  • Loading branch information
PSchmiedmayer committed Jan 10, 2025
1 parent 8e8b268 commit 8bec044
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,8 @@ jobs:
releasenotes = re.sub(r'\n\s*\n', '\n', releasenotes).strip()
# Replace quotation marks with single quotes and line breaks
releasenotes = releasenotes.replace('"', "'")
releasenotes = releasenotes.replace('"', "’")
releasenotes = releasenotes.replace("'", "’")
releasenotes = releasenotes.replace("\n", "\\\n")
# Write cleaned releasenotes to GITHUB_OUTPUT
Expand Down

0 comments on commit 8bec044

Please sign in to comment.