Use the gradle plugin (same usage as in element-android) to standardise caching.

This may or may not speed up build times.
This commit is contained in:
Michael Kaye 2023-03-07 13:32:32 +00:00
parent 8f2b0314bf
commit 7e0a284669
3 changed files with 16 additions and 0 deletions

View file

@ -28,6 +28,10 @@ jobs:
# Ensure we are building the branch and not the branch after being merged on develop
# https://github.com/actions/checkout/issues/881
ref: ${{ github.event_name == 'pull_request' && github.event.pull_request.head.sha || github.ref }}
- name: Configure gradle
uses: gradle/gradle-build-action@v2
with:
cache-read-only: ${{ github.ref != 'refs/heads/develop' }}
- name: Assemble debug APK
run: ./gradlew assembleDebug $CI_GRADLE_ARG_PROPERTIES
- name: Upload debug APKs