Change path.

This commit is contained in:
Michael Lipp 2023-06-11 21:56:41 +02:00
parent 863312cda4
commit dc85397e2c

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']}" \
+ "/VM-operator/${project.name}-arch:${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']}" \
+ "/VM-Operator/${project.name}-arch:latest"
+ "/${project.name}-arch:latest"
}
task pushContainer {