Update Jenkinsfile

This commit is contained in:
Mike Aizatsky 2016-10-10 15:35:07 -07:00 committed by GitHub
parent ea2bf52e10
commit f3de7787a5
1 changed files with 1 additions and 1 deletions

View File

@ -23,7 +23,7 @@ node() {
docker.withRegistry('', 'docker-login') {
for (int i = 0; i < images.size(); i++) {
def image = images[i]
stage name: "Pushing $image"
stage name: "$image"
docker.image(image).push()
}
}