Skip to content
Snippets Groups Projects
Commit 8d277c3e authored by Mattia Mancini's avatar Mattia Mancini
Browse files

Fix missing service on deploy steps

parent 7b7547d0
No related branches found
No related tags found
No related merge requests found
Pipeline #36127 passed
......@@ -63,6 +63,8 @@ docker-build-master:
# deploy test/dev version on 'sdc-dev.astron.nl'
docker-deploy-main-test:
stage: deploy_to_test
services:
- docker:dind
before_script:
- docker login -u "$CI_REGISTRY_USER" -p "$CI_REGISTRY_PASSWORD" $CI_REGISTRY
##
......@@ -103,6 +105,8 @@ docker-deploy-main-test:
docker-deploy-main-production:
# image: docker:latest
stage: deploy_to_production
services:
- docker:dind
before_script:
- docker login -u "$CI_REGISTRY_USER" -p "$CI_REGISTRY_PASSWORD" $CI_REGISTRY
##
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment