Skip to content

Commit

Permalink
[meta] fix release workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
ljharb committed Sep 12, 2024
1 parent 59ef14c commit 9668ee0
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -49,8 +49,11 @@ jobs:
- id: prune-footnotes
run: |
tmp.md < echo "${{ steps.changelog_reader.outputs.changes }}"
tmp.md << echo "${{ steps.changelog.outputs.links }}"
cat << 'EOF' > tmp.md
${{ steps.changelog_reader.outputs.changes }}
${{ steps.changelog.outputs.links }}
EOF
DELIMITER=$(uuidgen)
echo "body<<${DELIMITER}" >> "${GITHUB_OUTPUT}"
npx gfm-footnotes -i tmp.md > "${GITHUB_OUTPUT}"
Expand Down

0 comments on commit 9668ee0

Please sign in to comment.