File tree 1 file changed +8
-4
lines changed
1 file changed +8
-4
lines changed Original file line number Diff line number Diff line change @@ -49,10 +49,14 @@ jobs:
49
49
- name : Set output results
50
50
id : set_output
51
51
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
56
60
57
61
# Job Description: Collates the results of the interop tests into a mark down table.
58
62
collate :
You can’t perform that action at this time.
0 commit comments