Skip to content

Commit aaf56d3

Browse files
committed
fix gradle task
1 parent b4e3224 commit aaf56d3

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.ci/make.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -193,10 +193,10 @@ if [[ "$CMD" == "release" ]]; then
193193

194194
if [[ "$DRY_RUN" = "true" ]]; then
195195
echo "Dry run: building and publishing to the local repository"
196-
publishArg='publishAllPublicationsToDryRunRepository'
196+
gradle_task="java-client:publishAllPublicationsToDryRunRepository"
197197
else
198198
echo "Releasing to Maven snapshot repo"
199-
publishArg='publishToSonatype closeAndReleaseStagingRepositories'
199+
gradle_task="java-client:publishToSonatype closeAndReleaseStagingRepositories"
200200
fi
201201
docker run --rm --env VERSION=$VERSION -u "$(id -u)" \
202202
$git_mount $src_mount $output_mount \

0 commit comments

Comments
 (0)