File tree 1 file changed +12
-2
lines changed
1 file changed +12
-2
lines changed Original file line number Diff line number Diff line change 28
28
29
29
- uses : actions/checkout@v4
30
30
31
+ - uses : ljharb/actions/node/install@main
32
+ with :
33
+ node-version : node
34
+ skip-install : true
35
+ skip-ls-check : true
36
+
31
37
- uses : mindsers/changelog-reader-action@v2
32
38
id : changelog_reader
33
39
with :
@@ -47,16 +53,20 @@ jobs:
47
53
echo "$_links" >> "${GITHUB_OUTPUT}"
48
54
echo "${DELIMITER}" >> "${GITHUB_OUTPUT}"
49
55
50
- - id : prune-footnotes
56
+ - name : ' concat data > tmp.md '
51
57
run : |
52
58
cat << 'EOF' > tmp.md
53
59
${{ steps.changelog_reader.outputs.changes }}
54
60
${{ steps.changelog.outputs.links }}
55
61
EOF
56
62
63
+ - run : cat tmp.md
64
+
65
+ - id : prune-footnotes
66
+ run : |
57
67
DELIMITER=$(uuidgen)
58
68
echo "body<<${DELIMITER}" >> "${GITHUB_OUTPUT}"
59
- npx gfm-footnotes -i tmp.md > "${GITHUB_OUTPUT}"
69
+ npx gfm-footnotes -i tmp.md >> "${GITHUB_OUTPUT}"
60
70
echo "${DELIMITER}" >> "${GITHUB_OUTPUT}"
61
71
62
72
- uses : softprops/action-gh-release@v2
You can’t perform that action at this time.
0 commit comments