From 0124634c3f8567c439410fa61b05a2cc5636fd2e Mon Sep 17 00:00:00 2001
From: Alessandro Cerioni <acerioni@grandlyon.com>
Date: Tue, 19 Mar 2019 17:31:59 +0100
Subject: [PATCH] Attempting to let Bash interpolate the TAG variable.

---
 .gitlab-ci.yml | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml
index 438c68e..fd9e781 100644
--- a/.gitlab-ci.yml
+++ b/.gitlab-ci.yml
@@ -25,7 +25,7 @@ build_release:
   except:
     - /^(?!master).+@/
   script:
-    - export TAG=`$CI_COMMIT_TAG | sed 's/v//g'`
+    - export TAG=$($CI_COMMIT_TAG | sed 's/v//g')
     - export MAIL_SERVICE_BIND_PORT=3000
     - export RABBITMQ_LISTENING_PORT=5672
     - export RABBITMQ_GUI_PORT=15672
-- 
GitLab