Fix build
All checks were successful
ci/woodpecker/push/build Pipeline was successful

This commit is contained in:
Ryan Harg 2024-11-22 09:04:50 +01:00
parent 3938bcdf92
commit 677fc301d9

View file

@ -27,7 +27,11 @@ repositories {
jib {
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")) {
setOf("v" + project.property("app.version").toString())