Skip to content

Commit

Permalink
use eof in github output
Browse files Browse the repository at this point in the history
  • Loading branch information
jharrell committed Apr 29, 2024
1 parent 4ad3392 commit f6fea68
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion .github/workflows/check-all-links.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,11 @@ jobs:
OUTPUT="No absolute URLs to prisma.io/docs found."
SUCCESS=true
fi
echo "body=${OUTPUT}" >> "$GITHUB_OUTPUT"
# https://github.com/orgs/community/discussions/26288#discussioncomment-3876281
echo "body<<EOF" >> "${GITHUB_OUTPUT}"
echo "${OUTPUT}" >> "${GITHUB_OUTPUT}"
echo "EOF" >> "${GITHUB_OUTPUT}"
echo "success=${SUCCESS}" >> "$GITHUB_OUTPUT"
- uses: ./.github/actions/create-or-update-comment
Expand Down

0 comments on commit f6fea68

Please sign in to comment.