From 3aaec177a39e4ccbdfa1238199503e5c0ab005d1 Mon Sep 17 00:00:00 2001
From: Arkerthan <arkerthan@gmail.com>
Date: Sat, 22 May 2021 14:24:31 +0200
Subject: [PATCH] Allow releases for tags with any characters after the initial
 x.y.z

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

diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml
index 8064061a647..a5e6496aadb 100644
--- a/.gitlab-ci.yml
+++ b/.gitlab-ci.yml
@@ -6,7 +6,7 @@ workflow:
 
 .official-releases:
   rules:
-    - if: $CI_COMMIT_TAG =~ /\A\d+\.\d+\.\d+\z/
+    - if: $CI_COMMIT_TAG =~ /\A\d+\.\d+\.\d+/
 
 stages:
   - build
@@ -27,7 +27,7 @@ build:
   image: debian:latest
   rules:
     # official release
-    - if: $CI_COMMIT_TAG =~ /\A\d+\.\d+\.\d+\z/
+    - if: $CI_COMMIT_TAG =~ /\A\d+\.\d+\.\d+/
     # latest
     - if: $CI_COMMIT_BRANCH == $CI_DEFAULT_BRANCH
   script:
-- 
GitLab