From d374360ed9b448004d6ea7ff64d8c31959c3e89c Mon Sep 17 00:00:00 2001 From: Pablo Baxter Date: Tue, 28 Nov 2023 18:42:40 -0800 Subject: [PATCH] Allow local publishing without signing for release testing --- .github/workflows/release.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index f962567..32721e1 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -43,7 +43,7 @@ jobs: gradle-home-cache-cleanup: true - name: Assemble in parallel - run: ./gradlew publishToMavenLocal build + run: ./gradlew -PRELEASE_SIGNING_ENABLED=false publishToMavenLocal build - name: Publish the artifacts env: ORG_GRADLE_PROJECT_mavenCentralUsername: ${{ secrets.SONATYPE_NEXUS_USERNAME }}