From 8017c09ab5c0653db5faa9e935a7b101021fd3f7 Mon Sep 17 00:00:00 2001
From: Alexander Wellbrock <a.wellbrock@mailbox.org>
Date: Tue, 12 Jan 2021 23:02:11 +0100
Subject: [PATCH] fix tilde typo

---
 gitlab-ci-template.yml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/gitlab-ci-template.yml b/gitlab-ci-template.yml
index d4da064..2c4915a 100644
--- a/gitlab-ci-template.yml
+++ b/gitlab-ci-template.yml
@@ -35,7 +35,7 @@ container-build-amd64:
   tags:
     - amd64
   rules:
-    - if: '$CI_CONTAINER_BUILD_ARCHS ~= /:?amd64:?/'
+    - if: '$CI_CONTAINER_BUILD_ARCHS =~ /:?amd64:?/'
 
 container-build-arm64:
   extends: .container-build
@@ -44,7 +44,7 @@ container-build-arm64:
   tags:
     - arm64
   rules:
-    - if: '$CI_CONTAINER_BUILD_ARCHS ~= /:?arm64:?/'
+    - if: '$CI_CONTAINER_BUILD_ARCHS =~ /:?arm64:?/'
 
 container-tagging:
   stage: tag
-- 
GitLab