Skip to content

Commit 9668ee0

Browse files
committed
[meta] fix release workflow
1 parent 59ef14c commit 9668ee0

File tree

1 file changed

+5
-2
lines changed

1 file changed

+5
-2
lines changed

Diff for: .github/workflows/release.yml

+5-2
Original file line numberDiff line numberDiff line change
@@ -49,8 +49,11 @@ jobs:
4949
5050
- id: prune-footnotes
5151
run: |
52-
tmp.md < echo "${{ steps.changelog_reader.outputs.changes }}"
53-
tmp.md << echo "${{ steps.changelog.outputs.links }}"
52+
cat << 'EOF' > tmp.md
53+
${{ steps.changelog_reader.outputs.changes }}
54+
${{ steps.changelog.outputs.links }}
55+
EOF
56+
5457
DELIMITER=$(uuidgen)
5558
echo "body<<${DELIMITER}" >> "${GITHUB_OUTPUT}"
5659
npx gfm-footnotes -i tmp.md > "${GITHUB_OUTPUT}"

0 commit comments

Comments
 (0)