Skip to content

Commit 9c8db4f

Browse files
authored
Fix publishing smoke test images (#15585)
1 parent 2d1cfe8 commit 9c8db4f

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

smoke-tests/images/servlet/build.gradle.kts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -192,8 +192,8 @@ tasks {
192192
val windowsImages = createDockerTasks(buildWindowsTestImages, true)
193193

194194
val pushMatrix by registering(DockerPushImage::class) {
195-
mustRunAfter(buildLinuxTestImages)
196-
mustRunAfter(buildWindowsTestImages)
195+
dependsOn(buildLinuxTestImages)
196+
dependsOn(buildWindowsTestImages)
197197
group = "publishing"
198198
description = "Push all Docker images for the test matrix"
199199
images.set(linuxImages + windowsImages)

0 commit comments

Comments
 (0)