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 6e9deb4 commit a1c3fd7Copy full SHA for a1c3fd7
.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
+ cat /tmp/result >> $GITHUB_OUTPUT
31
+ echo "EOF" >> $GITHUB_OUTPUT
32
33
- uses: actions/upload-artifact@v4
34
with:
@@ -55,7 +56,7 @@ jobs:
55
56
57
The conversion produced the output below:
58
```
- ${{ steps.get_output.convert.result }}
59
+ ${{ steps.convert.outputs.result }}
60
61
reviewers: |
62
glpatcern
0 commit comments