Change path.

This commit is contained in:
Michael Lipp 2023-06-11 21:32:27 +02:00
parent db8147eb44
commit 60c5dd023e

View file

@ -58,7 +58,7 @@ task pushArchContainer(type: Exec) {
commandLine 'podman', 'push', '--tls-verify=false', \
"localhost/${project.name}:${project.version}", \
"${project.rootProject.properties['docker.registry']}" \
+ "/vmoperator/${project.name}:${project.version}"
+ "/${project.name}-arch:${project.version}"
}
task pushArchContainerAsLatest(type: Exec) {
@ -67,7 +67,7 @@ task pushArchContainerAsLatest(type: Exec) {
commandLine 'podman', 'push', '--tls-verify=false', \
"localhost/${project.name}:${project.version}", \
"${project.rootProject.properties['docker.registry']}" \
+ "/vmoperator/${project.name}:latest"
+ "/${project.name}-arch:latest"
}
task pushContainer {