Skip to content

Commit

Permalink
Fix empty image tag for jib
Browse files Browse the repository at this point in the history
  • Loading branch information
alekseinovikov committed Sep 29, 2021
1 parent f7d7a63 commit c6c151c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -60,6 +60,6 @@ jib {
password = System.getenv("DOCKER_HUB_PASSWORD")
}
image = "alekseinovikov/akaes"
tags = setOf(System.getenv("TAG_NAME"), "latest")
tags = setOf(System.getenv("TAG_NAME")?: "develop", "latest")
}
}

0 comments on commit c6c151c

Please sign in to comment.