fix(ci): Accept tags without v prefix (4.2.0 instead of v4.2.0)

This commit is contained in:
russell@unturf.com 2026-01-17 18:13:12 -05:00
parent 82da02702e
commit c8502316be

View file

@ -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+$/