Skip to content

Commit

Permalink
Fix deploy task 3
Browse files Browse the repository at this point in the history
  • Loading branch information
svok committed Jan 14, 2024
1 parent 565b206 commit 7a07ae1
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions comments-app-ktor/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -240,8 +240,8 @@ tasks {
group = "docker"
dependsOn(dockerDockerfileJvm)
inputDir.set(dockerJvmDir.parentFile)
images.add("$imageName-jvm:${rootProject.version}")
images.add("$imageName-jvm:${if (nightly) "nightly" else "latest"}")
images.add("$imageName:${rootProject.version}-jvm")
images.add("$imageName-jvm:${if (nightly) "nightly" else "latest"}-jvm")
}
val dockerPushJvmImage by creating(DockerPushImage::class) {
group = "docker"
Expand Down

0 comments on commit 7a07ae1

Please sign in to comment.