mirror of
https://github.com/sp-tarkov/build.git
synced 2025-02-12 17:10:45 -05:00
Don't match releases that include anything after the version number.
This commit is contained in:
parent
a5c83fde32
commit
d41ea4a6cf
2
.github/workflows/build.yaml
vendored
2
.github/workflows/build.yaml
vendored
@ -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
|
||||
|
Loading…
x
Reference in New Issue
Block a user