From dee692abf159b3cf1945f9b55e587fe7acbdb16d Mon Sep 17 00:00:00 2001 From: Louis Bergelson Date: Fri, 21 Oct 2022 15:48:26 -0400 Subject: [PATCH] Fixing the path reported by the gatkbot when there are test failures --- .github/actions/upload-gatk-test-results/action.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/actions/upload-gatk-test-results/action.yml b/.github/actions/upload-gatk-test-results/action.yml index 62166d4c64f..efddf20019c 100644 --- a/.github/actions/upload-gatk-test-results/action.yml +++ b/.github/actions/upload-gatk-test-results/action.yml @@ -49,7 +49,7 @@ runs: id: uploadreports run: | gsutil -m cp -z html -z js -z xml -z css -r build/reports/tests gs:/${{ env.HELLBENDER_TEST_LOGS }}${{ inputs.repo-path }}/; - VIEW_URL=https://storage.googleapis.com${{ env.HELLBENDER_TEST_LOGS }}${{ inputs.repo-path }}/tests/test/index.html + VIEW_URL=https://storage.googleapis.com${{ env.HELLBENDER_TEST_LOGS }}${{ inputs.repo-path }}/tests/testOnPackagedReleaseJar/index.html echo "See the test report at ${VIEW_URL}"; echo ::set-output name=view_url::"${VIEW_URL}" shell: bash