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 52
52
else
53
53
MATRIX="${MATRIX},"
54
54
fi
55
- MATRIX="${MATRIX}{\"stack\":\"{$ STACK:-alpine}\",\"version\":\"${VERSION:-main}\"}"
55
+ MATRIX="${MATRIX}{\"stack\":\"${ STACK:-alpine}\",\"version\":\"${VERSION:-main}\"}"
56
56
fi
57
57
fi
58
58
done
@@ -114,7 +114,7 @@ jobs:
114
114
115
115
typst :
116
116
name : Typst (${{ matrix.stack }})
117
- if : ${{ matrix.stack != ' static' }}
117
+ if : ${{ !contains(toJSON(needs.prepare.outputs.matrix), '"stack":" static"') }}
118
118
needs : [prepare, core]
119
119
strategy :
120
120
matrix : ${{ fromJSON(needs.prepare.outputs.matrix) }}
@@ -128,7 +128,7 @@ jobs:
128
128
129
129
latex :
130
130
name : LaTeX (${{ matrix.stack }})
131
- if : ${{ matrix.stack != ' static' }}
131
+ if : ${{ !contains(toJSON(needs.prepare.outputs.matrix), '"stack":" static"') }}
132
132
needs : [prepare, core]
133
133
strategy :
134
134
matrix : ${{ fromJSON(needs.prepare.outputs.matrix) }}
@@ -142,6 +142,7 @@ jobs:
142
142
143
143
extra :
144
144
name : Extra (${{ matrix.stack }})
145
+ if : ${{ !contains(toJSON(needs.prepare.outputs.matrix), '"stack":"static"') }}
145
146
needs : [prepare, latex]
146
147
strategy :
147
148
matrix : ${{ fromJSON(needs.prepare.outputs.matrix) }}
You can’t perform that action at this time.
0 commit comments