From 09edf601389686c04b1a17e13aa0a4cd460cafcc Mon Sep 17 00:00:00 2001 From: Aaron Steers Date: Fri, 6 Dec 2024 12:40:22 -0800 Subject: [PATCH] ci: make it easier to find the connector test report url upon failure --- .github/workflows/connector-tests.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/workflows/connector-tests.yml b/.github/workflows/connector-tests.yml index f0d9a81c..e24761f4 100644 --- a/.github/workflows/connector-tests.yml +++ b/.github/workflows/connector-tests.yml @@ -163,9 +163,10 @@ jobs: fi echo -e "\n[Download Job Output](${{steps.upload_job_output.outputs.artifact-url}})" >> $GITHUB_STEP_SUMMARY if [ "${success}" != "true" ]; then - echo "::error::Test failed for connector '${{ matrix.connector }}' on step '${failed_step}'. Check the logs for more details." + echo "::error::Test failed for connector '${{ matrix.connector }}' on step '${failed_step}'. " exit 1 fi + echo "See the execution report for details: ${html_report_url}" echo "success=${success}" >> $GITHUB_OUTPUT echo "html_report_url=${html_report_url}" >> $GITHUB_OUTPUT