diff options
| author | matt korwel <[email protected]> | 2025-07-04 00:16:35 -0500 |
|---|---|---|
| committer | GitHub <[email protected]> | 2025-07-04 05:16:35 +0000 |
| commit | adc63e68824811b8709a84f030f55933cb028562 (patch) | |
| tree | 2263654c5e2dfb4974ee33d8e6cb18734cbbd1b5 | |
| parent | d43ea268b01e80166ca9325bf174a9796105715f (diff) | |
fix tagging for nightly (#3202)
| -rw-r--r-- | .github/workflows/release.yml | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 1d73a74c..78f5f4dc 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -64,8 +64,8 @@ jobs: echo "Initial RELEASE_TAG: ${RELEASE_TAG}" # Validate that the tag starts with 'v' and follows semver - if [[ ! "$RELEASE_TAG" =~ ^v[0-9]+\.[0-9]+\.[0-9]+(-[a-zA-Z0-9.-]+)?$ ]]; then - echo "Error: Version must be in the format vX.Y.Z or vX.Y.Z-prerelease" + if [[ ! "$RELEASE_TAG" =~ ^v[0-9]+\.[0-9]+\.[0-9]+(-[a-zA-Z0-9.-]+)?(\+[a-zA-Z0-9.-]+)?$ ]]; then + echo "Error: Version must be in the format vX.Y.Z, vX.Y.Z-prerelease, or vX.Y.Z+buildmeta" exit 1 fi |
