From a3ef506409646bacb015783b9ae92fbe4cc47bf6 Mon Sep 17 00:00:00 2001 From: Benjamin DeMann Date: Thu, 12 Sep 2024 16:00:24 -0600 Subject: [PATCH] more naming fixes --- .github/actions/get_test_infos/action.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/actions/get_test_infos/action.yml b/.github/actions/get_test_infos/action.yml index 6eeeb3b4a3..b0801f4ab3 100644 --- a/.github/actions/get_test_infos/action.yml +++ b/.github/actions/get_test_infos/action.yml @@ -41,8 +41,8 @@ runs: export INPUT_DIRECTORIES="${{ inputs.directories }}" export INPUT_EXCLUDE_DIRS="${{ inputs.exclude_dirs }}" # Run the script - test-infos=$(./.github/actions/get_test_infos/get_test_infos.sh | base64 -d) - echo "tests-infos=${testInfos}" >> "$GITHUB_OUTPUT" + TEST_INFOS=$(./.github/actions/get_test_infos/get_test_infos.sh | base64 -d) + echo "tests-infos=${TEST_INFOS}" >> "$GITHUB_OUTPUT" shell: bash - name: Trouble shoot