From eefdcec86074170d2fa3ea0f1702520e08653177 Mon Sep 17 00:00:00 2001 From: Tommy Ludwig <8924140+shakuzen@users.noreply.github.com> Date: Fri, 6 Sep 2019 15:30:07 +0900 Subject: [PATCH] Run `mavenCentralSync` once Instead of running for each subproject, run the sync task once since all projects share the same Bintray package now. Fixes #1576 --- .circleci/config.yml | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/.circleci/config.yml b/.circleci/config.yml index 0f5b7a6d3b..9c449ed787 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -99,8 +99,9 @@ jobs: command: openssl aes-256-cbc -d -in gradle.properties.enc -out gradle.properties -k "$KEY" -md sha256 - deploy: name: Maven Central sync - command: ./gradlew mavenCentralSync -Prelease.useLastTag=true -x bintrayPublish -x bintrayUpload -x bintrayCreateVersion -x bintrayCreatePackage - # Maven Central Sync might take more than 10 minutes per artifact + # arbitrarily choose one project to run the `mavenCentralSync` task since all use the same Bintray package + command: ./gradlew :micrometer-core:mavenCentralSync -Prelease.useLastTag=true -x bintrayPublish -x bintrayUpload -x bintrayCreateVersion -x bintrayCreatePackage + # Maven Central Sync might take more than 10 minutes no_output_timeout: 30m workflows: