From 0ae3cc32ffb91b6a0e4377dbd67c4be2b4f72613 Mon Sep 17 00:00:00 2001 From: Benjamin DeMann Date: Tue, 27 Aug 2024 21:40:09 -0600 Subject: [PATCH] fixup maybe --- .github/workflows/test.yml | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 86d2e5b4d3..3fd2effdd6 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -30,7 +30,8 @@ jobs: name: generateTests run: | ALL_TESTS=$(./scripts/test.sh | base64 -d) - echo "all_tests=$ALL_TESTS" >> $GITHUB_OUTPUT + echo "::set-output name=all_tests::$ALL_TESTS" + # echo "all_tests=$ALL_TESTS" >> $GITHUB_OUTPUT - name: Print the captured output run: echo "${{ steps.get_all_tests.outputs.all_tests }}" debug-generate-tests: @@ -61,7 +62,8 @@ jobs: name: generateTests run: | ALL_TESTS=$(./scripts/test.sh | base64 -d) - echo "all_tests=$ALL_TESTS" >> $GITHUB_OUTPUT + echo "::set-output name=all_tests::$ALL_TESTS" + # echo "all_tests=$ALL_TESTS" >> $GITHUB_OUTPUT - name: Print the captured output run: echo "${{ steps.get_all_tests.outputs.all_tests }}" test-path-debugging: