fixed push image job
Some checks failed
InnoHub Processor/tatort/pipeline/head There was a failure building this commit

This commit is contained in:
2025-06-25 14:11:19 +02:00
parent d0c6feee33
commit b46852e385

4
Jenkinsfile vendored
View File

@@ -46,8 +46,8 @@ pipeline {
stage('Push image in gitea registry') {
steps {
docker push ${REGISTRY}/${USER}/${IMAGE}:latest
docker logout ${REGISTRY}
docker push "${REGISTRY}/${USER}/${IMAGE}:latest"
docker logout "${REGISTRY}"
}
}
}