Cache Gradle artifacts in release builds.

This commit is contained in:
Nolan Darilek 2020-11-17 13:32:42 -06:00
parent 413b68be63
commit e2c162c547

View File

@ -82,6 +82,11 @@ jobs:
- uses: actions/checkout@v2
with:
lfs: true
- uses: actions/cache@v2
with:
path: ~/.gradle/caches
key: ${{ runner.os }}-gradle-${{ hashFiles('**/*.gradle') }}
restore-keys: ${{ runner.os }}-gradle
- run: |
./gradlew assemble
mv build android