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 60fc0c6 commit 4a43c33Copy full SHA for 4a43c33
.github/workflows/rfc.yml
@@ -24,10 +24,11 @@ jobs:
24
- name: Convert Markdown to XML and save output
25
id: convert
26
run: |
27
- kramdown-rfc IETF-RFC.md > IETF-RFC.xml 2> /tmp/result \
28
- echo "result<<EOF" >> $GITHUB_OUTPUT \
29
- cat /tmp/result >> $GITHUB_OUTPUT \
30
- echo "EOF" >> $GITHUB_OUTPUT
+ kramdown-rfc IETF-RFC.md > IETF-RFC.xml 2> /tmp/result || true
+ cat /tmp/result
+ echo "result<<EOF" >> $GITHUB_OUTPUT
+ echo "$(cat /tmp/result)" >> $GITHUB_OUTPUT
31
+ echo "EOF" >> $GITHUB_OUTPUT
32
33
- uses: actions/upload-artifact@v4
34
with:
0 commit comments