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 30a6716 commit 83777baCopy full SHA for 83777ba
.github/workflows/rfc.yml
@@ -24,9 +24,9 @@ jobs:
24
- name: Convert Markdown to XML and save output
25
id: convert
26
run: |
27
- result=$(kramdown-rfc IETF-RFC.md > IETF-RFC.xml > 2>&1 > /dev/null)
+ result=$(kramdown-rfc IETF-RFC.md > IETF-RFC.xml 2> /tmp/result)
28
echo "result<<EOF" >> $GITHUB_OUTPUT
29
- echo "$result" >> $GITHUB_OUTPUT
+ cat /tmp/result >> $GITHUB_OUTPUT
30
echo "EOF" >> $GITHUB_OUTPUT
31
32
- uses: actions/upload-artifact@v4
0 commit comments