From c8502316bebd812c2885d14bd013fafbc11f1e13 Mon Sep 17 00:00:00 2001 From: "russell@unturf.com" Date: Sat, 17 Jan 2026 18:13:12 -0500 Subject: [PATCH] fix(ci): Accept tags without v prefix (4.2.0 instead of v4.2.0) --- .gitlab-ci.yml | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 6f6c312..913d6e4 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -30,7 +30,7 @@ detect-changes: expire_in: 1 hour only: - main - - /^v\d+\.\d+\.\d+$/ + - /^\d+\.\d+\.\d+$/ # ============================================================================ # STAGE 2: Generate Dynamic Matrix @@ -47,7 +47,7 @@ generate-matrix: expire_in: 1 hour only: - main - - /^v\d+\.\d+\.\d+$/ + - /^\d+\.\d+\.\d+$/ # ============================================================================ # STAGE 3: Build SDKs (only changed ones) @@ -69,7 +69,7 @@ build: expire_in: 1 hour only: - main - - /^v\d+\.\d+\.\d+$/ + - /^\d+\.\d+\.\d+$/ # ============================================================================ # STAGE 4: Test Matrix (child pipeline trigger) @@ -86,7 +86,7 @@ trigger-test-matrix: strategy: depend only: - main - - /^v\d+\.\d+\.\d+$/ + - /^\d+\.\d+\.\d+$/ # ============================================================================ # STAGE 5: Science Jobs (Pool Burning) @@ -106,7 +106,7 @@ science-validate-examples: allow_failure: true only: - main - - /^v\d+\.\d+\.\d+$/ + - /^\d+\.\d+\.\d+$/ science-lint-sdks: stage: science @@ -121,7 +121,7 @@ science-lint-sdks: allow_failure: true only: - main - - /^v\d+\.\d+\.\d+$/ + - /^\d+\.\d+\.\d+$/ science-benchmark-clients: stage: science @@ -136,7 +136,7 @@ science-benchmark-clients: allow_failure: true only: - main - - /^v\d+\.\d+\.\d+$/ + - /^\d+\.\d+\.\d+$/ # ============================================================================ # STAGE 6: Validate Examples (from science job artifacts) @@ -169,7 +169,7 @@ validate-examples: allow_failure: true only: - main - - /^v\d+\.\d+\.\d+$/ + - /^\d+\.\d+\.\d+$/ # ============================================================================ # STAGE 7: Generate Documentation @@ -196,7 +196,7 @@ generate-documentation: allow_failure: true only: - main - - /^v\d+\.\d+\.\d+$/ + - /^\d+\.\d+\.\d+$/ # ============================================================================ # STAGE 8: Report @@ -226,4 +226,4 @@ report: expire_in: 30 days only: - main - - /^v\d+\.\d+\.\d+$/ + - /^\d+\.\d+\.\d+$/