We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2213eee commit 6055b9eCopy full SHA for 6055b9e
.github/workflows/datachannel_echo-test.yml
@@ -78,7 +78,11 @@ jobs:
78
echo "| Server | Client | Test Result |" > DataChannel_Echo_test_results.md
79
echo "|--------|--------|-------------|" >> DataChannel_Echo_test_results.md
80
81
- echo "${results}" | jq -r 'to_entries | .[] | "\(.key): \(.value)"'
+ #echo "${results}" | jq -r 'to_entries | .[] | "\(.key): \(.value)"'
82
+ echo "${results}" | jq -r 'to_entries | .[] |
83
+ capture("result_(?<server>.+)_(?<client>.+)") |
84
+ "| \(.server) | \(.client) | \(.value) |"' >> DataChannel_Echo_test_results.md
85
+
86
87
cat DataChannel_Echo_test_results.md
88
0 commit comments