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 eb60ede commit 5330ddfCopy full SHA for 5330ddf
.github/workflows/release.yml
@@ -44,9 +44,11 @@ jobs:
44
id: release
45
run: |
46
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
+ {
+ echo "body<<EOF"
+ echo "${{ github.event.release.body }}"
50
+ echo "EOF"
51
+ } >> $GITHUB_OUTPUT
52
53
- name: Install jq
54
run: sudo apt-get update && sudo apt-get install -y jq
@@ -67,4 +69,3 @@ jobs:
67
69
--header "Authorization: Bearer $README_API_KEY" \
68
70
--header 'Content-Type: application/json' \
71
--data @payload.json
-
0 commit comments