From bd9f883bb63937b78824d0bceea52570648fc51b Mon Sep 17 00:00:00 2001 From: Harsh Shandilya Date: Fri, 10 Jun 2022 23:27:56 +0530 Subject: Improve Kotlin build caching (#1947) * Update Gradle properties with Kotlin 1.7 build things * Disable build tooling metadata task * Revert "Revert "github: stop disabling configuration cache in CI"" This reverts commit 08951643f51a5a62ca2419cb3a5e935b1d7de413. * Store build reports as artifacts --- .github/workflows/deploy_library_releases.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to '.github/workflows/deploy_library_releases.yml') diff --git a/.github/workflows/deploy_library_releases.yml b/.github/workflows/deploy_library_releases.yml index 57180a0e..6a1c21d0 100644 --- a/.github/workflows/deploy_library_releases.yml +++ b/.github/workflows/deploy_library_releases.yml @@ -32,7 +32,7 @@ jobs: - name: Upload binaries uses: gradle/gradle-build-action@v2.2.0 with: - arguments: --no-configuration-cache :${{ steps.task-select.outputs.PROJECT }}:publishAllPublicationsToMavenCentralRepository + arguments: :${{ steps.task-select.outputs.PROJECT }}:publishAllPublicationsToMavenCentralRepository env: ORG_GRADLE_PROJECT_mavenCentralUsername: ${{ secrets.NEXUS_PUBLISH_USERNAME }} ORG_GRADLE_PROJECT_mavenCentralPassword: ${{ secrets.NEXUS_PUBLISH_PASSWORD }} @@ -42,7 +42,7 @@ jobs: - name: Close and release repository uses: gradle/gradle-build-action@v2.2.0 with: - arguments: --no-configuration-cache closeAndReleaseRepository + arguments: closeAndReleaseRepository env: ORG_GRADLE_PROJECT_mavenCentralUsername: ${{ secrets.NEXUS_PUBLISH_USERNAME }} ORG_GRADLE_PROJECT_mavenCentralPassword: ${{ secrets.NEXUS_PUBLISH_PASSWORD }} -- cgit v1.2.3