From 0d0c9b9901b3b9f4ac520b53e540573ce1e0d47c Mon Sep 17 00:00:00 2001 From: Nicolas Gelot Date: Tue, 16 Dec 2025 14:21:12 +0100 Subject: [PATCH] fix(ci): forward variables to downtsream pipeline --- .gitlab-ci.yml | 12 ++++++++---- 1 file changed, 8 insertions(+), 4 deletions(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 57e586e..b5666e3 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -1,8 +1,8 @@ .docker: stage: build - image: docker:git + image: docker:26 services: - - docker:dind + - docker:26-dind tags: - generic_privileged before_script: @@ -55,8 +55,10 @@ deploy_staging: project: e/online-services/infra/web/eos-installer branch: main strategy: depend + forward: + pipeline_variables: true variables: - IMAGE_TAG: latest + DOCKER_TAG: latest when: manual deploy_production: @@ -70,5 +72,7 @@ deploy_production: project: e/online-services/infra/web/eos-installer branch: main strategy: depend + forward: + pipeline_variables: true variables: - IMAGE_TAG: ${CI_COMMIT_TAG/v/} + DOCKER_TAG: ${CI_COMMIT_TAG/v/} -- GitLab