Skip to content

Commit 83777ba

Browse files
committed
CI: fixed redirection
1 parent 30a6716 commit 83777ba

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.github/workflows/rfc.yml

Lines changed: 2 additions & 2 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-
result=$(kramdown-rfc IETF-RFC.md > IETF-RFC.xml > 2>&1 > /dev/null)
27+
result=$(kramdown-rfc IETF-RFC.md > IETF-RFC.xml 2> /tmp/result)
2828
echo "result<<EOF" >> $GITHUB_OUTPUT
29-
echo "$result" >> $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)