Skip to content

Commit 398ef56

Browse files
committed
Try
1 parent ea213e3 commit 398ef56

File tree

1 file changed

+19
-1
lines changed

1 file changed

+19
-1
lines changed

.github/workflows/CI.yml

Lines changed: 19 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -89,14 +89,32 @@ jobs:
8989
id: out
9090
with:
9191
matrix-step-name: php-version-and-artifact
92-
matrix-key: ${{ matrix.php-version }}
9392
outputs: |-
93+
version: ${{ matrix.php-version }}
9494
artifact: ${{ env.COVERAGE_ARTIFACT_NAME }}
9595
9696
debug-output:
9797
name: DEBUG
9898
runs-on: ubuntu-latest
9999
needs: [ tests ]
100+
outputs:
101+
matrix: ${{ steps.fetch-data.outputs.result }}
102+
steps:
103+
- uses: cloudposse/github-action-matrix-outputs-read@v1
104+
id: fetch-data
105+
with:
106+
matrix-step-name: php-version-and-artifact
107+
108+
- run: echo "${{ steps.fetch-data.outputs.result }}"
109+
debug-output2:
110+
name: DEBUG2
111+
runs-on: ubuntu-latest
112+
needs: [ debug-output ]
113+
strategy:
114+
fail-fast: true
115+
max-parallel: 4
116+
matrix:
117+
include:
100118
steps:
101119
- uses: cloudposse/github-action-matrix-outputs-read@v1
102120
id: fetch-data

0 commit comments

Comments
 (0)