From 233a052e14495495c8e4e00649700a142eb0cf74 Mon Sep 17 00:00:00 2001 From: Mahdi Hosseinzadeh <29678011+mahozad@users.noreply.github.com> Date: Sat, 10 Jul 2021 05:38:57 -0700 Subject: [PATCH] Fix another incorrect name in the code The code publishes to both Maven Central AND GitHub Packages so its name would better be "Publish to Maven Central and GitHub Packages" or like previous code snippets simply "Publish package" --- content/actions/guides/publishing-java-packages-with-gradle.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/content/actions/guides/publishing-java-packages-with-gradle.md b/content/actions/guides/publishing-java-packages-with-gradle.md index 940c9d4548..a20b2540e7 100644 --- a/content/actions/guides/publishing-java-packages-with-gradle.md +++ b/content/actions/guides/publishing-java-packages-with-gradle.md @@ -242,7 +242,7 @@ jobs: distribution: 'adopt' - name: Validate Gradle wrapper uses: gradle/wrapper-validation-action@e6e38bacfdf1a337459f332974bb2327a31aaf4b - - name: Publish to the Maven Central Repository + - name: Publish package run: gradle publish env: {% raw %} MAVEN_USERNAME: ${{ secrets.OSSRH_USERNAME }}