File tree 1 file changed +7
-6
lines changed
1 file changed +7
-6
lines changed Original file line number Diff line number Diff line change @@ -15,23 +15,24 @@ jobs:
15
15
define-matrix :
16
16
runs-on : ubuntu-latest
17
17
outputs :
18
- matrix : ${{ steps.define-matrix .outputs.matrix }}
18
+ setup : ${{ steps.define-setup .outputs.setup }}
19
19
20
20
steps :
21
21
- uses : actions/checkout@v4
22
22
23
- - name : Define Matrix
24
- id : define-matrix
23
+ - name : Define Setup
24
+ id : define-setup
25
25
run : |
26
- matrix =$(python ci/set_versions.py)
27
- echo "matrix=$matrix " >> $GITHUB_OUTPUT
26
+ setup =$(python ci/set_versions.py)
27
+ echo "setup=$setup " >> $GITHUB_OUTPUT
28
28
29
29
test :
30
30
runs-on : ubuntu-latest
31
31
needs : [define-matrix]
32
32
strategy :
33
33
fail-fast : false
34
- matrix : ${{ fromJSON(needs.define-matrix.outputs.matrix) }}
34
+ matrix :
35
+ setup : ${{ fromJSON(needs.define-matrix.outputs.setup) }}
35
36
steps :
36
37
- uses : actions/checkout@v4
37
38
You can’t perform that action at this time.
0 commit comments