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 ae17104 commit e4ef4bcCopy full SHA for e4ef4bc
.github/workflows/build-and-release.yml
@@ -729,6 +729,9 @@ jobs:
729
# Replace newlines in changelog with \n
730
changelog=$(echo "$CHANGELOG" | awk '{printf "%s\\n", $0}')
731
732
+ # Escape double quotes in changelog:
733
+ changelog=$(echo "$changelog" | sed 's/"/\\"/g')
734
+
735
# Create the latest.json file:
736
cat <<EOOOF > $GITHUB_WORKSPACE/release/assets/latest.json
737
{
0 commit comments