From 9a992bf208ad42cf834eff6895bab565eab87c77 Mon Sep 17 00:00:00 2001 From: "Justin \"J.R.\" Hill" Date: Fri, 13 Oct 2023 09:50:26 -0700 Subject: [PATCH] fix(java-sdk): fix typo in gradle publishing task name --- .../clients/java/template/.github/workflows/main.yml.mustache | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/config/clients/java/template/.github/workflows/main.yml.mustache b/config/clients/java/template/.github/workflows/main.yml.mustache index 40d701d1..27abc577 100644 --- a/config/clients/java/template/.github/workflows/main.yml.mustache +++ b/config/clients/java/template/.github/workflows/main.yml.mustache @@ -52,7 +52,7 @@ jobs: uses: gradle/gradle-build-action@ef76a971e2fa3f867b617efd72f2fbd72cf6f8bc # v2.8.0 with: # Tasks created by https://github.com/gradle-nexus/publish-plugin - arguments: publishpublishToSonatype closeAndReleaseSonatypeStagingRepository + arguments: publishToSonatype closeAndReleaseSonatypeStagingRepository env: MAVEN_USERNAME: ${{ secrets.OSSRH_USERNAME }} MAVEN_PASSWORD: ${{ secrets.OSSRH_TOKEN }}