File tree Expand file tree Collapse file tree 1 file changed +4
-3
lines changed Expand file tree Collapse file tree 1 file changed +4
-3
lines changed Original file line number Diff line number Diff line change 5252 else
5353 MATRIX="${MATRIX},"
5454 fi
55- MATRIX="${MATRIX}{\"stack\":\"{$ STACK:-alpine}\",\"version\":\"${VERSION:-main}\"}"
55+ MATRIX="${MATRIX}{\"stack\":\"${ STACK:-alpine}\",\"version\":\"${VERSION:-main}\"}"
5656 fi
5757 fi
5858 done
@@ -114,7 +114,7 @@ jobs:
114114
115115 typst :
116116 name : Typst (${{ matrix.stack }})
117- if : ${{ matrix.stack != ' static' }}
117+ if : ${{ !contains(toJSON(needs.prepare.outputs.matrix), '"stack":" static"') }}
118118 needs : [prepare, core]
119119 strategy :
120120 matrix : ${{ fromJSON(needs.prepare.outputs.matrix) }}
@@ -128,7 +128,7 @@ jobs:
128128
129129 latex :
130130 name : LaTeX (${{ matrix.stack }})
131- if : ${{ matrix.stack != ' static' }}
131+ if : ${{ !contains(toJSON(needs.prepare.outputs.matrix), '"stack":" static"') }}
132132 needs : [prepare, core]
133133 strategy :
134134 matrix : ${{ fromJSON(needs.prepare.outputs.matrix) }}
@@ -142,6 +142,7 @@ jobs:
142142
143143 extra :
144144 name : Extra (${{ matrix.stack }})
145+ if : ${{ !contains(toJSON(needs.prepare.outputs.matrix), '"stack":"static"') }}
145146 needs : [prepare, latex]
146147 strategy :
147148 matrix : ${{ fromJSON(needs.prepare.outputs.matrix) }}
You can’t perform that action at this time.
0 commit comments