mirror of
https://github.com/Fishwaldo/huginn.git
synced 2025-03-15 19:31:26 +00:00
Fix docker hub login on CI
https://github.com/moby/moby/pull/20565 removed the email flag from the docker login command.
This commit is contained in:
parent
4e9da008ee
commit
600b06c192
1 changed files with 1 additions and 1 deletions
|
@ -10,7 +10,7 @@ else
|
|||
fi
|
||||
|
||||
if [[ -n "${DOCKER_USER}" && "${TRAVIS_PULL_REQUEST}" = 'false' && "${TRAVIS_BRANCH}" = "master" ]]; then
|
||||
docker login -e $DOCKER_EMAIL -u $DOCKER_USER -p $DOCKER_PASS
|
||||
docker login -u $DOCKER_USER -p $DOCKER_PASS
|
||||
docker tag $DOCKER_IMAGE $DOCKER_IMAGE:$TRAVIS_COMMIT
|
||||
docker push $DOCKER_IMAGE
|
||||
docker push $DOCKER_IMAGE:$TRAVIS_COMMIT
|
||||
|
|
Loading…
Add table
Reference in a new issue