Skip to content

Commit a1c3fd7

Browse files
committed
CI: further fixes
1 parent 6e9deb4 commit a1c3fd7

File tree

1 file changed

+6
-5
lines changed

1 file changed

+6
-5
lines changed

.github/workflows/rfc.yml

Lines changed: 6 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -24,10 +24,11 @@ jobs:
2424
- name: Convert Markdown to XML and save output
2525
id: convert
2626
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
27+
kramdown-rfc IETF-RFC.md > IETF-RFC.xml 2> /tmp/result || true
28+
cat /tmp/result
29+
echo "result<<EOF" >> $GITHUB_OUTPUT
30+
cat /tmp/result >> $GITHUB_OUTPUT
31+
echo "EOF" >> $GITHUB_OUTPUT
3132
3233
- uses: actions/upload-artifact@v4
3334
with:
@@ -55,7 +56,7 @@ jobs:
5556
5657
The conversion produced the output below:
5758
```
58-
${{ steps.get_output.convert.result }}
59+
${{ steps.convert.outputs.result }}
5960
```
6061
reviewers: |
6162
glpatcern

0 commit comments

Comments
 (0)