Skip to content

Commit d0fc72b

Browse files
committed
f
1 parent 0a7b7ff commit d0fc72b

File tree

1 file changed

+6
-2
lines changed

1 file changed

+6
-2
lines changed

.github/workflows/v3-e2e.yaml

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -209,10 +209,12 @@ jobs:
209209
if [ "$success" = "true" ]; then
210210
exit 0
211211
else
212+
error=$(jq -r '.Error' ./e2e-results-online/result.json)
213+
echo "::error::E2E test failed: $error"
212214
exit 1
213215
fi
214216
else
215-
echo "Error: result.json not found"
217+
echo "::error::result.json not found in e2e-results-online directory"
216218
exit 1
217219
fi
218220
@@ -265,10 +267,12 @@ jobs:
265267
if [ "$success" = "true" ]; then
266268
exit 0
267269
else
270+
error=$(jq -r '.Error' ./e2e-results-airgap/result.json)
271+
echo "::error::E2E test failed: $error"
268272
exit 1
269273
fi
270274
else
271-
echo "Error: result.json not found"
275+
echo "::error::result.json not found in e2e-results-airgap directory"
272276
exit 1
273277
fi
274278

0 commit comments

Comments
 (0)