Use eskatos/gradle-command-action instead of manually handling caching

This commit is contained in:
arkon
2020-10-08 21:24:59 -04:00
parent 6aea0f48ed
commit e1eb030b18
2 changed files with 6 additions and 37 deletions

View File

@@ -38,18 +38,10 @@ jobs:
mkdir -p ~/.gradle
cp .github/runner-files/ci-gradle.properties ~/.gradle/gradle.properties
- name: Generate Gradle cache key
run: ./.github/runner-files/checksum.sh checksum.txt
- name: Cache Gradle dependencies
uses: actions/cache@v2
continue-on-error: true # continue if the cache restore/upload fails
with:
path: |
~/.gradle/caches/build-cache-*
~/.gradle/caches/jars-*
~/.gradle/caches/modules-*
key: ${{ runner.os }}-gradle-${{ hashFiles('checksum.txt') }}
- name: Build app
run: ./gradlew assembleStandardDebug
uses: eskatos/gradle-command-action@v1
with:
arguments: assembleStandardDebug
wrapper-cache-enabled: true
dependencies-cache-enabled: true
configuration-cache-enabled: true