Skip to content

Commit

Permalink
ci: build-meta.sh: allow versions smaller then 2
Browse files Browse the repository at this point in the history
  • Loading branch information
herbetom committed May 7, 2024
1 parent a15dff5 commit edffbfc
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/build-meta.sh
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit edffbfc

Please sign in to comment.