Skip to content

Commit

Permalink
Cache Gradle artifacts in release builds.
Browse files Browse the repository at this point in the history
  • Loading branch information
ndarilek committed Nov 17, 2020
1 parent 413b68b commit e2c162c
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit e2c162c

Please sign in to comment.