From b9f2b05a2955854275100c33b5af99dc2c69366c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?I=C3=B1igo=20Moreno?= <inigo.moreno@tecnalia.com> Date: Tue, 19 Oct 2021 11:25:00 +0200 Subject: [PATCH] Try to fix bug in ddeploy template --- ci-templates/industrial-ci-templates.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ci-templates/industrial-ci-templates.yml b/ci-templates/industrial-ci-templates.yml index 0214c7a..b07510e 100644 --- a/ci-templates/industrial-ci-templates.yml +++ b/ci-templates/industrial-ci-templates.yml @@ -42,7 +42,7 @@ # Run ddeploy - ddeploy --yaml ${DDEPLOY_YAML} # Get ID of image created by ddeploy - - DOCKER_ID=$$(docker images --format='{{.ID}}' | head -1) + - DOCKER_ID=$(docker images --format='{{.ID}}' | head -1) # Tag and push - docker tag $${DOCKER_ID} ${DOCKER_PUSH_REGISTRY}/${DOCKER_PUSH_NAME}:${DOCKER_PUSH_TAG} - docker push ${DOCKER_PUSH_REGISTRY}/${DOCKER_PUSH_NAME}:${DOCKER_PUSH_TAG} -- GitLab