Skip to content

Commit

Permalink
Fix while loop subshell execution
Browse files Browse the repository at this point in the history
  • Loading branch information
lschuermann committed Nov 8, 2024
1 parent bbd73fe commit 2f0604b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/treadmill-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -265,7 +265,7 @@ jobs:
|--------|------|
GITHUB_STEP_SUMMARY
echo "$JSON_TEST_ARRAY" | jq -r -c '.[]' | while read TEST; do
while read TEST; do
# WHILE ---------->
# For markdown links, we want a sanitized test name without special characters
Expand Down Expand Up @@ -308,7 +308,7 @@ jobs:
STEP_SUMMARY_DETAILS
# -----------> DONE
done
done < <(echo "$JSON_TEST_ARRAY" | jq -r -c '.[]')
# Finally, add all test output sections to the overall step summary:
echo "" >>"$GITHUB_STEP_SUMMARY"
Expand Down

0 comments on commit 2f0604b

Please sign in to comment.