This commit is contained in:
parent
3938bcdf92
commit
677fc301d9
1 changed files with 5 additions and 1 deletions
|
@ -27,7 +27,11 @@ repositories {
|
||||||
|
|
||||||
jib {
|
jib {
|
||||||
to {
|
to {
|
||||||
image = "${project.property("registry.fqdn")}/github-release-bot/github-release-bot"
|
image = if (project.hasProperty("registry.fqdn")) {
|
||||||
|
"${project.property("registry.fqdn")}/github-release-bot/github-release-bot"
|
||||||
|
} else {
|
||||||
|
"github-release-bot"
|
||||||
|
}
|
||||||
|
|
||||||
tags = if (project.hasProperty("app.version")) {
|
tags = if (project.hasProperty("app.version")) {
|
||||||
setOf("v" + project.property("app.version").toString())
|
setOf("v" + project.property("app.version").toString())
|
||||||
|
|
Loading…
Reference in a new issue