We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 59ef14c commit 9668ee0Copy full SHA for 9668ee0
.github/workflows/release.yml
@@ -49,8 +49,11 @@ jobs:
49
50
- id: prune-footnotes
51
run: |
52
- tmp.md < echo "${{ steps.changelog_reader.outputs.changes }}"
53
- tmp.md << echo "${{ steps.changelog.outputs.links }}"
+ cat << 'EOF' > tmp.md
+ ${{ steps.changelog_reader.outputs.changes }}
54
+ ${{ steps.changelog.outputs.links }}
55
+ EOF
56
+
57
DELIMITER=$(uuidgen)
58
echo "body<<${DELIMITER}" >> "${GITHUB_OUTPUT}"
59
npx gfm-footnotes -i tmp.md > "${GITHUB_OUTPUT}"
0 commit comments