use pretty title for beta releases
authorMarcel van der Veldt <m.vanderveldt@outlook.com>
Sun, 26 Oct 2025 03:30:27 +0000 (04:30 +0100)
committerMarcel van der Veldt <m.vanderveldt@outlook.com>
Sun, 26 Oct 2025 03:30:27 +0000 (04:30 +0100)
.github/workflows/release.yml

index 6f22140f323f32d407570ffa1866c0a3a9e0a0ac..a33d34c3ca749fe0d5192097aa622bc00920b5c4 100644 (file)
@@ -221,8 +221,8 @@ jobs:
               TITLE="$VERSION Nightly"
             fi
           elif [[ "$CHANNEL" == "beta" ]]; then
-            # Extract base version and beta number from X.Y.Z.bN
-            if [[ "$VERSION" =~ ^([0-9]+\.[0-9]+\.[0-9]+)\.b([0-9]+)$ ]]; then
+            # Extract base version and beta number from X.Y.ZbN
+            if [[ "$VERSION" =~ ^([0-9]+\.[0-9]+\.[0-9]+)b([0-9]+)$ ]]; then
               BASE="${BASH_REMATCH[1]}"
               BETA_NUM="${BASH_REMATCH[2]}"
               TITLE="$BASE Beta $BETA_NUM"