Attempt to login with my dockerhub username instead of email.

This failed previously, unfortunately :(
This commit is contained in:
R. Tyler Croy 2016-08-03 13:26:29 -07:00
parent cbb9a14617
commit df0de7843f
No known key found for this signature in database
GPG Key ID: 1426C7DC3F51E16F
1 changed files with 1 additions and 1 deletions

2
Jenkinsfile vendored
View File

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