fixed push image job

This commit is contained in:
2025-06-25 14:59:31 +02:00
parent 15529541ed
commit 62bca02625

4
Jenkinsfile vendored
View File

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