diff --git a/.github/workflows/actions-demo.yml b/.github/workflows/actions-demo.yml index 82838bbcad..df7c78f001 100644 --- a/.github/workflows/actions-demo.yml +++ b/.github/workflows/actions-demo.yml @@ -50,3 +50,12 @@ jobs: # } - run: echo '${{ toJSON(needs.make-output.outputs) }}' - run: echo '${{ toJSON(needs.make-output.outputs.all_tests) }}' + use-output-again: + runs-on: ubuntu-latest + needs: [make-output] + strategy: + matrix: + version: ${{ toJSON(needs.make-output.outputs.all_tests) }} + steps: + - run: echo '${{ toJSON(needs.make-output.outputs) }}' + - run: echo '${{ toJSON(needs.make-output.outputs.all_tests) }}'