Skip to content

Commit

Permalink
github actions: extend cache for Android build
Browse files Browse the repository at this point in the history
  • Loading branch information
scribam authored and flyinghead committed May 29, 2021
1 parent 642a897 commit 4c2bf59
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions .github/workflows/android.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,8 +17,10 @@ jobs:

- uses: actions/cache@v2
with:
path: ~/.gradle/caches
key: ${{ runner.os }}-gradle-${{ hashFiles('**/*.gradle*') }}
path: |
~/.gradle/caches
~/.gradle/wrapper
key: ${{ runner.os }}-gradle-${{ hashFiles('**/*.gradle*', '**/gradle-wrapper.properties') }}
restore-keys: |
${{ runner.os }}-gradle-
Expand Down

0 comments on commit 4c2bf59

Please sign in to comment.