From 6ea546d53768da4efc1ed4b6052635b7738f160c Mon Sep 17 00:00:00 2001
From: Bryan Brancotte <bryan.brancotte@pasteur.fr>
Date: Mon, 17 Apr 2023 10:26:19 +0200
Subject: [PATCH] typo: add s to variables

---
 .gitlab-ci.yml | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml
index 0e2bf29..81e1daf 100644
--- a/.gitlab-ci.yml
+++ b/.gitlab-ci.yml
@@ -7,7 +7,7 @@ services:
 
 build-my-base:
   stage: build
-  variable:
+  variables:
     STAGE_NAME="my-base"
   script:
     - docker login -u "$CI_REGISTRY_USER" -p "$CI_REGISTRY_PASSWORD" $CI_REGISTRY
@@ -30,7 +30,7 @@ build-my-base:
 build-my-r-base:
   stage: build
   needs: [build-my-base]
-  variable:
+  variables:
     STAGE_NAME="my-r-base"
   script:
     - docker login -u "$CI_REGISTRY_USER" -p "$CI_REGISTRY_PASSWORD" $CI_REGISTRY
@@ -56,7 +56,7 @@ build-my-r-base:
 build-my-r-shiny:
   stage: build
   needs: ["build-my-r-base"]
-  variable:
+  variables:
     STAGE_NAME="my-r-shiny"
   script:
     - docker login -u "$CI_REGISTRY_USER" -p "$CI_REGISTRY_PASSWORD" $CI_REGISTRY
-- 
GitLab