Compare commits

...

1 Commits

Author SHA1 Message Date
Owen
49001f6dda Fix not detecting rc release in sign and package 2026-01-21 15:45:20 -08:00

View File

@@ -345,7 +345,7 @@ jobs:
# Determine if this is an RC release # Determine if this is an RC release
IS_RC="false" IS_RC="false"
if echo "$TAG" | grep -qE "rc[0-9]+$"; then if [[ "$TAG" == *"-rc."* ]]; then
IS_RC="true" IS_RC="true"
fi fi