diff --git a/Jenkinsfile b/Jenkinsfile index 8c25204..a914a71 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -33,9 +33,9 @@ pipeline { sh "docker image tag " + registry+'/'+repo+'/'+project+':'+version + ' ' + quay_image sh "docker push " + quay_image sh "docker image tag " + registry+'/'+repo+'/'+project+':'+version + ' ' + quay_image.split(/\:/)[0] + ":latest" - sh "docker push " + official_image.split(/\:/)[0] + ":latest" + sh "docker push " + quay_image.split(/\:/)[0] + ":latest" sh "docker image tag " + registry+'/'+repo+'/'+project+':'+version + ' ' + quay_image.split(/\:/)[0] + ":3.12" - sh "docker push " + official_image.split(/\:/)[0] + ":3.12" + sh "docker push " + quay_image.split(/\:/)[0] + ":3.12" } } }