Skip to content

Commit 8cb978b

Browse files
committed
CI: make the command go ahead even in case of errors
1 parent 60fc0c6 commit 8cb978b

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

.github/workflows/rfc.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -24,9 +24,9 @@ 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 \
27+
kramdown-rfc IETF-RFC.md > IETF-RFC.xml 2> /tmp/result; \
28+
echo "result<<EOF" >> $GITHUB_OUTPUT; \
29+
cat /tmp/result >> $GITHUB_OUTPUT; \
3030
echo "EOF" >> $GITHUB_OUTPUT
3131
3232
- uses: actions/upload-artifact@v4

0 commit comments

Comments
 (0)