From 389d69a980ec4ecc3605e571523459cf049b34ff Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Fran=C3=A7ois=20Grand?= <francois.grand@inrae.fr> Date: Tue, 28 Feb 2023 10:46:52 +0100 Subject: [PATCH] fix(ci): invalid variables syntax refs #604 --- .gitlab-ci.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index d3502479b..8ad50856f 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -99,7 +99,7 @@ build-dev: - schedules - web variables: - - BASEHREF=/cassiopee/$CI_COMMIT_REF_NAME/ + - BASEHREF: "/cassiopee/$CI_COMMIT_REF_NAME/" build-prod: extends: .build @@ -107,7 +107,7 @@ build-prod: - tags - devel variables: - - BASEHREF=/ + - BASEHREF: "/" clean-stale-branches: stage: clean-stale-branches -- GitLab