From 931d1564603ab5276706006fda23d7f97e62e41e Mon Sep 17 00:00:00 2001 From: Paul Spooren Date: Thu, 7 Nov 2019 09:03:52 -1000 Subject: [PATCH] readd docker login on deploy This was removed during debugging and accidently forgotten to readd. It fails to pass if no Docker credentials are given, which would be always the case except on openwrtorg/master. In the future a test docker hub account should be used instead of disabling it. Fixes: 475f2f1a97c4e84360cffea3c297c1e0f739003d Signed-off-by: Paul Spooren --- .gitlab/ci/base.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.gitlab/ci/base.yml b/.gitlab/ci/base.yml index f4697fb..ddeea0c 100644 --- a/.gitlab/ci/base.yml +++ b/.gitlab/ci/base.yml @@ -23,3 +23,5 @@ - master services: - docker:dind + before_script: + - docker login -u "$DOCKER_USER" -p "$DOCKER_PASS"