Skip to content

Commit

Permalink
fix(release_notifier): quote release body
Browse files Browse the repository at this point in the history
  • Loading branch information
ReenigneArcher committed Jul 25, 2024
1 parent b792d65 commit ed0f80f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/release-notifier.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,9 +27,9 @@ jobs:
RELEASE_BODY: ${{ github.event.release.body }}
id: output
run: |
echo ${RELEASE_BODY} >> ./release_body.md
echo "${RELEASE_BODY}" > ./release_body.md
modified_body=$(sed '/^---$/d; /^## Contributors$/,/<\/a>/d' ./release_body.md)
echo "modified_body: \n${modified_body}"
echo "modified_body: ${modified_body}"
echo "simplified_body=${modified_body}" >> $GITHUB_OUTPUT
discord:
Expand Down

0 comments on commit ed0f80f

Please sign in to comment.