Skip to content

Commit

Permalink
Merge branch '1.5.x' into 1.6.x
Browse files Browse the repository at this point in the history
  • Loading branch information
shakuzen committed Mar 15, 2021
2 parents 9f09c3f + 4ad7e41 commit 121d6f5
Show file tree
Hide file tree
Showing 3 changed files with 1 addition and 80 deletions.
27 changes: 0 additions & 27 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -68,20 +68,6 @@ jobs:
name: Deployment
command: sh ./gradle/deploy.sh

maven-central-sync:
executor: circle-jdk-executor
steps:
- checkout
- run:
name: Decrypt properties
command: openssl aes-256-cbc -d -in gradle.properties.enc -out gradle.properties -k "$KEY" -md sha256
- deploy:
name: Maven Central sync
# 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:
version: 2
build_prs_deploy_snapshots:
Expand Down Expand Up @@ -118,16 +104,3 @@ workflows:
filters:
tags:
only: /^v\d+\.\d+\.\d+(-rc\.\d+)?$/
- staging-approval:
type: approval
requires:
- deploy
filters:
tags:
only: /^v\d+\.\d+\.\d+(-rc\.\d+)?$/
- maven-central-sync:
requires:
- staging-approval
filters:
tags:
only: /^v\d+\.\d+\.\d+(-rc\.\d+)?$/
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -215,7 +215,7 @@ subprojects {
}

signing {
required = hasProperty('SIGNING_KEY')
required = System.env.CIRCLE_STAGE == 'deploy'
useInMemoryPgpKeys(findProperty('SIGNING_KEY'), findProperty('SIGNING_PASSWORD'))
sign publishing.publications.nebula
}
Expand Down
52 changes: 0 additions & 52 deletions scripts/sync-to-maven-central.sh

This file was deleted.

0 comments on commit 121d6f5

Please sign in to comment.