Skip to content

Commit a20b530

Browse files
committed
Def not but..
1 parent 0ff9990 commit a20b530

File tree

1 file changed

+8
-4
lines changed

1 file changed

+8
-4
lines changed

.github/workflows/datachannel_echo-test.yml

+8-4
Original file line numberDiff line numberDiff line change
@@ -49,10 +49,14 @@ jobs:
4949
- name: Set output results
5050
id: set_output
5151
run: |
52-
# Combine the results directly into a single output variable
53-
echo "result[@]=${{ matrix.server }},${{ matrix.client }}=${{ steps.check_connection.outputs.TEST_RESULT }}${{ steps.set_output.outputs.result }}" >> "$GITHUB_OUTPUT"
54-
# Set the combined output for this job
55-
#echo "results=$(echo "${RESULTS[@]}" | tr '\n' ' ')" >> $GITHUB_OUTPUT
52+
# Create a string for the result entry
53+
result_entry="${{ matrix.server }},${{ matrix.client }},${{ steps.check_connection.outputs.TEST_RESULT }}"
54+
55+
# Append the result entry to the output variable
56+
echo "RESULTS+=($result_entry)" >> $GITHUB_ENV # Use environment variable for results
57+
58+
# Also set the results for output
59+
echo "results=${{ env.RESULTS }}" >> $GITHUB_OUTPUT
5660
5761
# Job Description: Collates the results of the interop tests into a mark down table.
5862
collate:

0 commit comments

Comments
 (0)