diff options
author | Harsh Shandilya <me@msfjarvis.dev> | 2022-06-10 23:27:56 +0530 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-06-10 23:27:56 +0530 |
commit | bd9f883bb63937b78824d0bceea52570648fc51b (patch) | |
tree | 8855d2541dfc6d28914e75111929d88b1e249814 /.github/workflows/deploy_library_releases.yml | |
parent | a6f7a96c0d81ba84e207103cadfe490c48b79e70 (diff) |
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
Diffstat (limited to '.github/workflows/deploy_library_releases.yml')
-rw-r--r-- | .github/workflows/deploy_library_releases.yml | 4 |
1 files changed, 2 insertions, 2 deletions
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 }} |