From 8637137d5bb0bdabff433e8b7b36e00835ff43f4 Mon Sep 17 00:00:00 2001 From: Benjamin DeMann Date: Wed, 28 Aug 2024 14:13:13 -0600 Subject: [PATCH] this way maybe? --- .github/workflows/actions-demo.yml | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/.github/workflows/actions-demo.yml b/.github/workflows/actions-demo.yml index 874667558e..2079e95c57 100644 --- a/.github/workflows/actions-demo.yml +++ b/.github/workflows/actions-demo.yml @@ -110,11 +110,12 @@ jobs: - name: Report full path of test run: echo ${{matrix.tests.path}} use-old-output: - name: OLD ${{matrix.version.name}} + name: OLD ${{matrix.test.name}} runs-on: ubuntu-latest - needs: [make-old-output] + needs: + - make-old-output strategy: matrix: - version: ${{ toJSON(needs.make-old-output.outputs.all_tests) }} + test: ${{ toJSON(needs.make-old-output.outputs.all_tests) }} steps: - - run: echo '${{ toJSON(matrix.version) }}' + - run: echo '${{ toJSON(matrix.test.path) }}'