File tree 2 files changed +3
-3
lines changed
2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change 97
97
98
98
helm-test :
99
99
needs : [get-test-case]
100
- if : ${{ fromJSON( needs.get-test-case.outputs.value_files).length != 0 }}
100
+ if : ${{ needs.get-test-case.outputs.value_files != '[]' }}
101
101
strategy :
102
102
matrix :
103
103
value_file : ${{ fromJSON(needs.get-test-case.outputs.value_files) }}
Original file line number Diff line number Diff line change 33
33
34
34
clean-up :
35
35
needs : get-build-matrix
36
- if : ${{ fromJSON( needs.get-build-matrix .outputs.nodes).length != 0 }}
36
+ if : ${{ needs.get-image-list .outputs.matrix != '' }}
37
37
strategy :
38
38
matrix :
39
39
node : ${{ fromJson(needs.get-build-matrix.outputs.nodes) }}
48
48
49
49
build :
50
50
needs : [get-build-matrix, clean-up]
51
- if : ${{ fromJSON( needs.get-build-matrix .outputs.nodes).length != 0 }}
51
+ if : ${{ needs.get-image-list .outputs.matrix != '' }}
52
52
strategy :
53
53
matrix :
54
54
example : ${{ fromJson(needs.get-build-matrix.outputs.examples) }}
You can’t perform that action at this time.
0 commit comments