We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c1c6e94 commit e125c57Copy full SHA for e125c57
1 file changed
.github/workflows/playground-test.yml
@@ -155,11 +155,9 @@ jobs:
155
SESSION_DIR=$(ls -td ~/.local/state/builder-playground/sessions/*/ 2>/dev/null | head -1)
156
if [ -n "$SESSION_DIR" ]; then
157
echo "Session dir: $SESSION_DIR"
158
- ls -la "$SESSION_DIR" 2>/dev/null || true
159
- for log in "$SESSION_DIR"/*.log; do
160
- [ -f "$log" ] || continue
161
- echo "--- $(basename "$log") ---"
162
- cat "$log"
+ find "$SESSION_DIR/logs" -type f 2>/dev/null | while read -r f; do
+ echo "--- ${f#$SESSION_DIR/logs/} ---"
+ cat "$f"
163
done
164
else
165
echo "no session directory found"
0 commit comments