File tree Expand file tree Collapse file tree 1 file changed +6
-2
lines changed
Expand file tree Collapse file tree 1 file changed +6
-2
lines changed Original file line number Diff line number Diff 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
You can’t perform that action at this time.
0 commit comments