From edffbfc0a4235699a3f40210256247fe77763529 Mon Sep 17 00:00:00 2001 From: Tom Herbers Date: Tue, 7 May 2024 07:33:47 +0200 Subject: [PATCH] ci: build-meta.sh: allow versions smaller then 2 --- .github/build-meta.sh | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/build-meta.sh b/.github/build-meta.sh index 3d48039..3fe5a1b 100644 --- a/.github/build-meta.sh +++ b/.github/build-meta.sh @@ -37,11 +37,11 @@ fi # Release Branch regex RELEASE_BRANCH_RE="^v20[0-9]{2}\.[0-9]\.x$" # Regex for nightly firmware tag -NIGHTLY_TAG_RE="^v[2-9].[0-9].x-[0-9]{8}$" +NIGHTLY_TAG_RE="^v[0-9].[0-9].x-[0-9]{8}$" # Regex for custom nightly firmware tag -CUSTOM_NIGHTLY_TAG_RE="^v[2-9].[0-9].x-[0-9]{8}" +CUSTOM_NIGHTLY_TAG_RE="^v[0-9].[0-9].x-[0-9]{8}" # Regex for release firmware tag -RELEASE_TAG_RE="^v[2-9].[0-9].[0-9]$" +RELEASE_TAG_RE="^v[0-9].[0-9].[0-9]$" # Get Gluon version information if [ -n "$WORKFLOW_DISPATCH_REPOSITORY" ] && [ -n "$WORKFLOW_DISPATCH_REFERENCE" ]; then