Skip to content

Commit 5330ddf

Browse files
committed
Fix EOF
1 parent eb60ede commit 5330ddf

File tree

1 file changed

+5
-4
lines changed

1 file changed

+5
-4
lines changed

.github/workflows/release.yml

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -44,9 +44,11 @@ jobs:
4444
id: release
4545
run: |
4646
echo "title=${{ github.event.release.name }}" >> $GITHUB_OUTPUT
47-
echo "body<<EOF" >> $GITHUB_OUTPUT
48-
echo "${{ github.event.release.body }}" >> $GITHUB_OUTPUT
49-
echo "EOF" >> $GITHUB_OUTPUT
47+
{
48+
echo "body<<EOF"
49+
echo "${{ github.event.release.body }}"
50+
echo "EOF"
51+
} >> $GITHUB_OUTPUT
5052
5153
- name: Install jq
5254
run: sudo apt-get update && sudo apt-get install -y jq
@@ -67,4 +69,3 @@ jobs:
6769
--header "Authorization: Bearer $README_API_KEY" \
6870
--header 'Content-Type: application/json' \
6971
--data @payload.json
70-

0 commit comments

Comments
 (0)