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 15:03:20 +02:00
parent 62bca02625
commit be61814b58

8
Jenkinsfile vendored
View File

@@ -46,12 +46,14 @@ pipeline {
stage('Push image in gitea registry') { stage('Push image in gitea registry') {
steps { steps {
docker.withRegistry("${ REGISTRY }", 'docker-login') { script {
docker.build("${ IMAGE }").push('latest') docker.withRegistry("${ REGISTRY }", 'docker-login') {
docker.build("${ IMAGE }").push('latest')
}
}
} }
} }
} }
}
post { post {
success { success {