diff options
Diffstat (limited to '.github/actions')
| -rwxr-xr-x | .github/actions/deploy/deploy.sh | 10 |
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" ) ;; |
