fix: remove hyphen from version suffixes in release names

Version suffixes are now appended without a hyphen:
  02.30.00dev instead of 02.30.00-dev
  02.30.00rc instead of 02.30.00-rc

This matches the standard release name format:
  Package - MokoWaaS (VERSION: 02.30.00dev)

Authored-by: Moko Consulting
Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
This commit is contained in:
Jonathan Miller
2026-05-31 11:10:08 -05:00
parent 59720f1533
commit 2e1eb9b8f9
2 changed files with 8 additions and 8 deletions
+4 -4
View File
@@ -79,10 +79,10 @@ jobs:
STABILITY="${{ inputs.stability || 'development' }}"
case "$STABILITY" in
development) SUFFIX="-dev"; TAG="development" ;;
alpha) SUFFIX="-alpha"; TAG="alpha" ;;
beta) SUFFIX="-beta"; TAG="beta" ;;
release-candidate) SUFFIX="-rc"; TAG="release-candidate" ;;
development) SUFFIX="dev"; TAG="development" ;;
alpha) SUFFIX="alpha"; TAG="alpha" ;;
beta) SUFFIX="beta"; TAG="beta" ;;
release-candidate) SUFFIX="rc"; TAG="release-candidate" ;;
esac
# Read current version (bump already handled by push workflow)
+4 -4
View File
@@ -132,10 +132,10 @@ jobs:
# Version suffix per stability stream
case "$STABILITY" in
development) SUFFIX="-dev"; TAG="development" ;;
alpha) SUFFIX="-alpha"; TAG="alpha" ;;
beta) SUFFIX="-beta"; TAG="beta" ;;
rc) SUFFIX="-rc"; TAG="release-candidate" ;;
development) SUFFIX="dev"; TAG="development" ;;
alpha) SUFFIX="alpha"; TAG="alpha" ;;
beta) SUFFIX="beta"; TAG="beta" ;;
rc) SUFFIX="rc"; TAG="release-candidate" ;;
*) SUFFIX=""; TAG="stable" ;;
esac