From a235144a0caf33bec829452edd00525a75a41239 Mon Sep 17 00:00:00 2001 From: Anatolii Kmetiuk Date: Thu, 19 Dec 2019 14:47:26 +0100 Subject: [PATCH] Don't publish to sonatype twice This is a quickfix to prevent CI from failing publish phases. Since other phases (such as github release) may depend on sonatype release, the fact that sonatype release fails may also fail these phases needlessly thus complicating the release process. We should do the publish of tasty core together with the other artefacts. --- .drone.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.drone.yml b/.drone.yml index b1b8d0e87366..839cbb9a1aae 100644 --- a/.drone.yml +++ b/.drone.yml @@ -107,7 +107,7 @@ steps: - test_sbt - test_java11 commands: - - ./project/scripts/sbtPublish ";project dotty-bootstrapped ;publishSigned ;sonatypeBundleRelease ;project tasty-core-scala2; publishSigned ;sonatypeBundleRelease" + - ./project/scripts/sbtPublish ";project dotty-bootstrapped ;publishSigned ;sonatypeBundleRelease" environment: NIGHTLYBUILD: yes PGP_PW: @@ -135,7 +135,7 @@ steps: - test_java11 commands: - ./project/scripts/sbt dist-bootstrapped/packArchive - - ./project/scripts/sbtPublish ";project dotty-bootstrapped ;publishSigned ;sonatypeBundleRelease ;project tasty-core-scala2; publishSigned ;sonatypeBundleRelease" + - ./project/scripts/sbtPublish ";project dotty-bootstrapped ;publishSigned ;sonatypeBundleRelease" environment: PGP_PW: from_secret: pgp_pw