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_github_releases.yml | |
parent | 98f49e7b69dad95e973260743e4579d426a17b4a (diff) |
github: stop disabling configuration cache in CI
Diffstat (limited to '.github/workflows/deploy_github_releases.yml')
-rw-r--r-- | .github/workflows/deploy_github_releases.yml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/.github/workflows/deploy_github_releases.yml b/.github/workflows/deploy_github_releases.yml index a8b639c2..482f30ce 100644 --- a/.github/workflows/deploy_github_releases.yml +++ b/.github/workflows/deploy_github_releases.yml @@ -29,7 +29,7 @@ jobs: - name: Build release binaries uses: gradle/gradle-build-action@v2.2.0-beta.1 with: - arguments: --no-configuration-cache :app:assembleFreeRelease :app:assembleNonFreeRelease :app:bundleNonFreeRelease + arguments: :app:assembleFreeRelease :app:assembleNonFreeRelease :app:bundleNonFreeRelease env: SENTRY_DSN: ${{ secrets.SENTRY_DSN }} |