refactor(ci): update product options to be more specific
🔄 Changed product option values: - worker → worker-mobile-app - client → client-mobile-app 📝 Updated Files: - .github/workflows/hotfix-branch-creation.yml - .github/workflows/product-release.yml - .github/scripts/extract-version.sh - .github/scripts/extract-release-notes.sh - .github/scripts/create-release-summary.sh - .github/scripts/generate-tag-name.sh 🎯 Key Changes: - Product dropdown options now more specific - All conditional checks updated to use new values - Tag/branch names remain clean (strips -mobile-app suffix) - Tag format unchanged: krow-withus-worker-mobile/prod-v0.1.0 - Branch format unchanged: hotfix/krow-withus-worker-mobile-v0.1.0 Benefits: ✅ Clearer product selection (distinguishes mobile from future web/backend) ✅ Backward compatible tag format ✅ Maintains clean naming conventions
This commit is contained in:
6
.github/workflows/product-release.yml
vendored
6
.github/workflows/product-release.yml
vendored
@@ -8,8 +8,8 @@ on:
|
||||
required: true
|
||||
type: choice
|
||||
options:
|
||||
- worker
|
||||
- client
|
||||
- worker-mobile-app
|
||||
- client-mobile-app
|
||||
environment:
|
||||
description: '🌍 Environment'
|
||||
required: true
|
||||
@@ -111,7 +111,7 @@ jobs:
|
||||
VERSION="${{ steps.version.outputs.version }}"
|
||||
|
||||
# Generate release title
|
||||
if [ "$APP" = "worker" ]; then
|
||||
if [ "$APP" = "worker-mobile-app" ]; then
|
||||
APP_DISPLAY="Worker Mobile Application"
|
||||
else
|
||||
APP_DISPLAY="Client Mobile Application"
|
||||
|
||||
Reference in New Issue
Block a user