Skip to content

Commit

Permalink
Fix docker publish github action (#41)
Browse files Browse the repository at this point in the history
  • Loading branch information
babisRoutis authored Nov 22, 2023
1 parent b3d3951 commit 0173ca4
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 @@ -102,7 +102,7 @@ tasks.named<BootBuildImage>("bootBuildImage") {
env["REGISTRY_PASSWORD"]?.let { password = it }
}
env["DOCKER_METADATA_OUTPUT_TAGS"]?.let { tagStr ->
tags = tagStr.split(" ")
tags = tagStr.split(delimiters = arrayOf("\n", " ")).onEach { println("Tag: $it") }
}
}
}
Expand Down

0 comments on commit 0173ca4

Please sign in to comment.