aboutsummaryrefslogtreecommitdiff
path: root/.github/actions
diff options
context:
space:
mode:
authorMenny Even Danan <menny@evendanan.net>2020-03-16 20:55:42 +0000
committerMenny Even Danan <menny@evendanan.net>2020-03-16 20:55:47 +0000
commita0a1810607293e44170aa9833478a5e498612f63 (patch)
treeccc3ddedef23e1de6a9155a35ae83adecdbb0f4f /.github/actions
parenta3cd866db6326154a12365c46ddb701ba2842ca1 (diff)
downloadAnySoftKeyboard-a0a1810607293e44170aa9833478a5e498612f63.tar.gz
AnySoftKeyboard-a0a1810607293e44170aa9833478a5e498612f63.tar.bz2
fix missing add-on deploy process case
Diffstat (limited to '.github/actions')
-rwxr-xr-x.github/actions/deploy/deploy.sh10
1 files changed, 3 insertions, 7 deletions
diff --git a/.github/actions/deploy/deploy.sh b/.github/actions/deploy/deploy.sh
index 70b00636e..b6cb7e749 100755
--- a/.github/actions/deploy/deploy.sh
+++ b/.github/actions/deploy/deploy.sh
@@ -63,7 +63,7 @@ if [[ "${DEPLOYMENT_TASK}" == "deploy" ]]; then
DEPLOY_TASKS+=( "ime:app:assembleRelease" "ime:app:publishRelease" )
;;
- addOns)
+ addOns*)
DEPLOY_TASKS+=( "assembleRelease" "publishRelease" "-x" "ime:app:assembleRelease" "-x" "ime:app:publishRelease" )
;;
@@ -76,15 +76,11 @@ if [[ "${DEPLOYMENT_TASK}" == "deploy" ]]; then
elif [[ "${DEPLOYMENT_TASK}" == "deploy:migration" ]]; then
case "${PROCESS_NAME}" in
- imeMaster)
- DEPLOY_TASKS+=( "ime:app:promoteReleaseArtifact" )
- ;;
-
- imeProduction)
+ ime*)
DEPLOY_TASKS+=( "ime:app:promoteReleaseArtifact" )
;;
- addOns)
+ addOns*)
DEPLOY_TASKS+=( "promoteReleaseArtifact" "-x" "ime:app:promoteReleaseArtifact" )
;;