From 23e492bc6d69f7b7c9a042e0e2fe8097adb118ca Mon Sep 17 00:00:00 2001 From: Benjamin DeMann Date: Fri, 25 Oct 2024 13:14:08 -0600 Subject: [PATCH] add printing for troubleshooting --- .github/actions/get_test_infos/action.yml | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/.github/actions/get_test_infos/action.yml b/.github/actions/get_test_infos/action.yml index d64b255f35..04b8bb518e 100644 --- a/.github/actions/get_test_infos/action.yml +++ b/.github/actions/get_test_infos/action.yml @@ -41,3 +41,9 @@ runs: TEST_INFOS=$(./.github/actions/get_test_infos/get_test_infos.sh | base64 -d) echo "test-infos=${TEST_INFOS}" >> "$GITHUB_OUTPUT" shell: bash + + - name: Echo test infos for troubleshooting + run: | + echo "Test Infos Output:" + echo "${{ steps.get-test-infos.outputs.test-infos }}" + shell: bash