From 73740d68a21d1ebb45e4a1777e70fa8057693bda Mon Sep 17 00:00:00 2001 From: Philip Wedemann <22521688+hfhbd@users.noreply.github.com> Date: Tue, 31 Oct 2023 17:18:16 +0100 Subject: [PATCH] CI: Disable config cache when publishing (#263) Co-authored-by: hfhbd --- .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 }}