From df0de7843f6e55ec68e4ea54965d3fda1f26bf9d Mon Sep 17 00:00:00 2001 From: "R. Tyler Croy" Date: Wed, 3 Aug 2016 13:26:29 -0700 Subject: [PATCH] Attempt to login with my dockerhub username instead of email. This failed previously, unfortunately :( --- Jenkinsfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Jenkinsfile b/Jenkinsfile index fba04b3..89781bd 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -17,7 +17,7 @@ node('docker') { passwordVariable: 'DOCKERHUB_TOKEN', usernameVariable: 'DOCKERHUB_EMAIL']]) { /* Our variables be exposed in the environment and we must log in before trying to publish to Dockerhub */ - sh 'docker login --username ${DOCKERHUB_EMAIL} --password ${DOCKERHUB_TOKEN}' + sh 'docker login --username rtyler --password ${DOCKERHUB_TOKEN}' sh './push-rubies.sh' } }