Skip to content

Commit

Permalink
fix(ci): publish only configuration
Browse files Browse the repository at this point in the history
gradle plugin requires configuration to be published
cli doesn't need anything from maven
  • Loading branch information
Malinskiy committed May 9, 2024
1 parent 1b35c13 commit 08fcb5d
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .buildsystem/deploy-github.sh
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion .buildsystem/deploy-sonatype.sh
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 08fcb5d

Please sign in to comment.