From 84c47934c61b49eae0a74531a2bbfec25734b05d Mon Sep 17 00:00:00 2001
From: jurgenhaas <juergen@paragon-es.de>
Date: Fri, 18 Feb 2022 16:07:25 +0100
Subject: [PATCH] Switch to matrix syntax for pipeline

---
 .gitlab-ci.yml | 16 ++++++++--------
 1 file changed, 8 insertions(+), 8 deletions(-)

diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml
index 305afaa..d6f9675 100644
--- a/.gitlab-ci.yml
+++ b/.gitlab-ci.yml
@@ -12,14 +12,14 @@ php:
       #  PHP: 7.0
       #- ALPINE: 3.7
       #  PHP: 7.1
-      - ALPINE: 3.8
-        PHP: 7.2
-      - ALPINE: 3.11
-        PHP: 7.3
-      - ALPINE: 3.11
-        PHP: 7.4
-      - ALPINE: 3.12
-        PHP: 8.0
+      - ALPINE: '3.8'
+        PHP: '7.2'
+      - ALPINE: '3.11'
+        PHP: '7.3'
+      - ALPINE: '3.11'
+        PHP: '7.4'
+      - ALPINE: '3.12'
+        PHP: '8.0'
   script:
     - docker build --pull --build-arg ALPINE_VERSION=${ALPINE} --build-arg PHP_MAJOR_VERSION=${PHP} --build-arg VERSION=${VERSION} -t $CI_REGISTRY_IMAGE:php-${PHP} .
     - docker push $CI_REGISTRY_IMAGE:php-${PHP}
-- 
GitLab