From 1890785db47aa12717aa46ffb63a88aa3bb933b2 Mon Sep 17 00:00:00 2001 From: Robert Prehn <3952444+prehnRA@users.noreply.github.com> Date: Sat, 19 Dec 2020 14:25:12 -0600 Subject: [PATCH] fix: Try to force https login for docker --- .gitlab-ci.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 5def7cee..96374302 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -36,5 +36,6 @@ deploy: image: "circleci/node:14.5" script: - npm install - - docker login $CI_REGISTRY -u $CI_REGISTRY_USER -p $CI_REGISTRY_PASSWORD + - echo "Attempting login to https://${CI_REGISTRY}" + - docker login "https://${CI_REGISTRY}" -u $CI_REGISTRY_USER -p $CI_REGISTRY_PASSWORD - npx semantic-release