generate jenkinsfile
Some checks failed
dockers/alpine/pipeline/head There was a failure building this commit

This commit is contained in:
chris 2020-10-28 17:51:30 +01:00
parent 9aa09d664b
commit 64c4699dd7

4
Jenkinsfile vendored
View file

@ -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"
}
}
}