@@ -257,7 +257,7 @@ jobs:
257
257
# we should always have an artifact from a previous build.
258
258
remote :
259
259
needs : [test, check, generate-matrix]
260
- if : needs.generate-matrix.outputs.tests.remote
260
+ if : fromJson( needs.generate-matrix.outputs.tests) .remote
261
261
runs-on : ubuntu-latest
262
262
steps :
263
263
- uses : actions/checkout@v3
@@ -278,7 +278,7 @@ jobs:
278
278
279
279
bisect :
280
280
needs : [test, check, generate-matrix]
281
- if : needs.generate-matrix.outputs.tests.bisect
281
+ if : fromJson( needs.generate-matrix.outputs.tests) .bisect
282
282
runs-on : ubuntu-latest
283
283
steps :
284
284
- uses : actions/checkout@v3
@@ -299,7 +299,7 @@ jobs:
299
299
300
300
foreign :
301
301
needs : [test, check, generate-matrix]
302
- if : needs.generate-matrix.outputs.tests.foreign
302
+ if : fromJson( needs.generate-matrix.outputs.tests) .foreign
303
303
runs-on : ubuntu-latest
304
304
steps :
305
305
- uses : actions/checkout@v3
@@ -326,7 +326,7 @@ jobs:
326
326
327
327
docker-in-docker :
328
328
needs : [test, check, generate-matrix]
329
- if : needs.generate-matrix.outputs.tests.docker-in-docker
329
+ if : fromJson( needs.generate-matrix.outputs.tests) .docker-in-docker
330
330
runs-on : ubuntu-latest
331
331
steps :
332
332
- uses : actions/checkout@v3
@@ -350,7 +350,7 @@ jobs:
350
350
name : podman
351
351
runs-on : ubuntu-latest
352
352
needs : [shellcheck, test, check, generate-matrix]
353
- if : needs.generate-matrix.outputs.tests.podman
353
+ if : fromJson( needs.generate-matrix.outputs.tests) .podman
354
354
strategy :
355
355
fail-fast : false
356
356
outputs :
0 commit comments