Skip to content

Commit

Permalink
[BUGFIX] Fix multiline comments for GitHub environment variables
Browse files Browse the repository at this point in the history
  • Loading branch information
nhovratov committed Sep 29, 2023
1 parent d43871d commit 147b8ed
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -473,7 +473,11 @@ jobs:
if [[ -z "${comment// }" ]]; then
echo "comment=Released version ${{ env.version }} of ${{ env.TYPO3_EXTENSION_KEY }}" >> $GITHUB_ENV
else
echo "comment=$comment" >> $GITHUB_ENV
{
echo 'comment<<EOF'
echo "$comment"
echo EOF
} >> "$GITHUB_ENV"
fi
- name: Setup PHP
Expand Down

0 comments on commit 147b8ed

Please sign in to comment.