Skip to content

Commit 1a26d86

Browse files
authored
chore: fix output
chore: fix output
2 parents 6e1bb0a + bf720fc commit 1a26d86

File tree

1 file changed

+6
-5
lines changed

1 file changed

+6
-5
lines changed

.github/workflows/cloud-e2e-web.yml

Lines changed: 6 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -313,12 +313,13 @@ jobs:
313313
')
314314
315315
body=$(printf "%s\n" "$TEST_RESULT_ALL" | awk -v et="$engine_type" '
316-
/PLAYWRIGHT-RESULT/ {start=1; next}
317-
start && $1 == et {
318-
printf "%s|%s##", $2, $3
319-
}
316+
/PLAYWRIGHT-RESULT/ {start=1; next}
317+
start && $1 == et {
318+
if (i++ > 0) printf "##"
319+
printf "%s|%s", $2, $3
320+
}
320321
')
321-
322+
322323
TEST_RESULT=$(printf "###%s###%s\n" "$engine_type" "$body")
323324
324325
if [[ -z "$TEST_RESULT" ]]; then

0 commit comments

Comments
 (0)