From 08fcb5d494336ec392cc98240174013293aff241 Mon Sep 17 00:00:00 2001 From: Anton Malinskiy Date: Thu, 9 May 2024 17:15:57 +1000 Subject: [PATCH] fix(ci): publish only configuration gradle plugin requires configuration to be published cli doesn't need anything from maven --- .buildsystem/deploy-github.sh | 2 +- .buildsystem/deploy-sonatype.sh | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.buildsystem/deploy-github.sh b/.buildsystem/deploy-github.sh index aaf98256a..ae54d7048 100755 --- a/.buildsystem/deploy-github.sh +++ b/.buildsystem/deploy-github.sh @@ -18,7 +18,7 @@ fi ASSEMBLE_TARGETS="" PUBLISH_TARGETS="" -for i in ":core" ":vendor:vendor-android" ":report:execution-timeline" ":report:html-report" ":analytics:usage" ":configuration"; do +for i in ":configuration"; do ASSEMBLE_TARGETS="$ASSEMBLE_TARGETS $i:assemble" PUBLISH_TARGETS="$PUBLISH_TARGETS $i:publishAllPublicationsToGitHubRepository" done diff --git a/.buildsystem/deploy-sonatype.sh b/.buildsystem/deploy-sonatype.sh index 7abb3c787..72d685beb 100755 --- a/.buildsystem/deploy-sonatype.sh +++ b/.buildsystem/deploy-sonatype.sh @@ -18,7 +18,7 @@ fi ASSEMBLE_TARGETS="" PUBLISH_TARGETS="" -for i in ":core" ":vendor:vendor-android" ":report:execution-timeline" ":report:html-report" ":analytics:usage" ":configuration"; do +for i in ":configuration"; do ASSEMBLE_TARGETS="$ASSEMBLE_TARGETS $i:assemble" PUBLISH_TARGETS="$PUBLISH_TARGETS $i:publishAllPublicationsToOSSHRRepository" done