Skip to content

Commit 6aeb6de

Browse files
committed
Fixed yaml.
1 parent 31b9f75 commit 6aeb6de

File tree

1 file changed

+1
-3
lines changed

1 file changed

+1
-3
lines changed

.github/workflows/datachannel_echo-test.yml

+1-3
Original file line numberDiff line numberDiff line change
@@ -64,16 +64,14 @@ jobs:
6464
needs: [interop-tests]
6565
steps:
6666
- uses: actions/checkout@v2
67-
with:
68-
ref: testresults
6967
- name: Create results file from interop test outputs
7068
run: |
7169
echo "Collating results from:"
7270
echo "results=${{ toJSON(needs.interop-tests.outputs.results) }}"
7371
echo "| Server | Client | Test Result |" > DataChannel_Echo_test_results.md
7472
echo "|--------|--------|-------------|" >> DataChannel_Echo_test_results.md
7573
76-
# Read results from the job output
74+
# Read results from the job output
7775
IFS=' ' read -r -a results_array <<< "${{ needs.interop-tests.outputs.results }}"
7876
for result in "${results_array[@]}"; do
7977
IFS=',' read -r server client test_result <<< "$result"

0 commit comments

Comments
 (0)