fix: Try to force https login for docker

This commit is contained in:
Robert Prehn 2020-12-19 14:25:12 -06:00
parent da6b6e8b30
commit 1890785db4

View file

@ -36,5 +36,6 @@ deploy:
image: "circleci/node:14.5" image: "circleci/node:14.5"
script: script:
- npm install - 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 - npx semantic-release