0
0
mirror of https://github.com/sp-tarkov/build.git synced 2025-02-12 16:30:44 -05:00

Don't match releases that include anything after the version number.

This commit is contained in:
Refringe 2025-01-03 17:16:52 -05:00
parent a5c83fde32
commit d41ea4a6cf
Signed by: Refringe
SSH Key Fingerprint: SHA256:t865XsQpfTeqPRBMN2G6+N8wlDjkgUCZF3WGW6O9N/k

View File

@ -84,7 +84,7 @@ jobs:
BUILD_TYPE="bleeding" # CHOMP! KEK
elif [[ "$TARGET_TAG_UPPER" =~ -BE ]]; then
BUILD_TYPE="bleeding"
elif [[ "$TARGET_TAG_UPPER" =~ v?[0-9]+\.[0-9]+\.[0-9]+ ]]; then
elif [[ "$TARGET_TAG_UPPER" =~ ^v?[0-9]+\.[0-9]+\.[0-9]+$ ]]; then
BUILD_TYPE="release"
fi
fi