diff options
author | Harsh Shandilya <me@msfjarvis.dev> | 2022-06-05 04:06:12 +0530 |
---|---|---|
committer | Harsh Shandilya <me@msfjarvis.dev> | 2022-06-05 04:06:12 +0530 |
commit | f53fe0419608f061b2518fd6d4964fc928161d19 (patch) | |
tree | f293fb9d7e8a1f435b7ba580719a1770958a173e /.github/workflows/deploy_library_releases.yml | |
parent | 98f49e7b69dad95e973260743e4579d426a17b4a (diff) |
github: stop disabling configuration cache in CI
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 afa9c522..55da209b 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-beta.1 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-beta.1 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 }} |