feat: simplify pre-release workflow to use only release candidates (RC)

- Update create-release.sh to show only RC example
- Remove alpha/beta complexity, keeping just RC for testing
- Simplify version progression: stable -> RC -> stable
- Auto-update continues to ignore pre-releases for safety
This commit is contained in:
courtmanr@gmail.com
2025-06-03 15:56:02 +01:00
parent 2de032f04f
commit 123aa7db55
+4
View File
@@ -14,6 +14,10 @@ SUGGESTED_RELEASE_VERSION=$(echo "$PACKAGE_VERSION" | sed -E 's/-(dev|alpha|beta
# --- User Input for Version ---
echo "Current version in package.json: $PACKAGE_VERSION"
echo "Suggested stable version: $SUGGESTED_RELEASE_VERSION"
echo ""
echo "Pre-release example: ${SUGGESTED_RELEASE_VERSION}-rc.1"
echo ""
read -p "Enter release version (default: $SUGGESTED_RELEASE_VERSION): " USER_VERSION
RELEASE_VERSION=${USER_VERSION:-$SUGGESTED_RELEASE_VERSION}