diff options
| -rw-r--r-- | deployment/build.gradle | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/deployment/build.gradle b/deployment/build.gradle index 6632c3c74..e178e1115 100644 --- a/deployment/build.gradle +++ b/deployment/build.gradle @@ -36,13 +36,13 @@ deployments { } // start - IME -def imeOnMasterPush = tasks.register("imeOnMasterPush").configure { +def imeOnMasterPush = tasks.register("imeOnMasterPush") { it.group "Publishing" it.description "Deployment request on master push for IME" it.dependsOn tasks.named("deploymentRequest_imeMaster_alpha_100") } -def imePromoteMaster = tasks.register("imePromoteMaster").configure { +def imePromoteMaster = tasks.register("imePromoteMaster") { it.group "Publishing" it.description "Deployment promoting request on master for IME" //promoting ime only on Wednesday @@ -56,13 +56,13 @@ def imePromoteMaster = tasks.register("imePromoteMaster").configure { // end - IME // start - addons -def addOnsOnMasterPush = tasks.register("addOnsOnMasterPush").configure { +def addOnsOnMasterPush = tasks.register("addOnsOnMasterPush") { it.group "Publishing" it.description "Deployment request on master push for all addons" it.dependsOn tasks.named("deploymentRequest_addOnsMaster_beta_100") } -def addOnsPromoteMaster = tasks.register("addOnsPromoteMaster").configure { +def addOnsPromoteMaster = tasks.register("addOnsPromoteMaster") { it.group 'Publishing' it.description 'NO-OP: Deployment request on master push for all addons' } |
