generate jenkinsfile
dockers/alpine/pipeline/head There was a failure building this commit Details

This commit is contained in:
chris 2020-10-28 17:51:30 +01:00
parent 9aa09d664b
commit 64c4699dd7
1 changed files with 2 additions and 2 deletions

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