Public Access
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:
@@ -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)
|
||||
|
||||
@@ -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
|
||||
|
||||
|
||||
Reference in New Issue
Block a user