From 37dfb3cd6d13df60472dc9845455088d74bf4a8b Mon Sep 17 00:00:00 2001 From: hfhbd Date: Tue, 31 Oct 2023 16:12:13 +0100 Subject: [PATCH] CI: Disable config cache when publishing --- .github/workflows/CD.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/CD.yml b/.github/workflows/CD.yml index 693783a..3501dd7 100644 --- a/.github/workflows/CD.yml +++ b/.github/workflows/CD.yml @@ -28,7 +28,7 @@ jobs: java-version: 11 - uses: gradle/gradle-build-action@v2 - name: Publish - run: ./gradlew -Pversion=$version -Dorg.gradle.parallel=false publish closeAndReleaseStagingRepository + run: ./gradlew -Pversion=$version -Dorg.gradle.parallel=false --no-configuration-cache publish closeAndReleaseStagingRepository env: ORG_GRADLE_PROJECT_signingKey: ${{ secrets.SIGNING_PRIVATE_KEY }} ORG_GRADLE_PROJECT_signingPassword: ${{ secrets.SIGNING_PASSWORD }}