Skip to content

Commit

Permalink
Reverts setup-gradle cache usage until approved.
Browse files Browse the repository at this point in the history
  • Loading branch information
rharter committed Apr 29, 2024
1 parent ad89504 commit d07b6bd
Showing 1 changed file with 14 additions and 2 deletions.
16 changes: 14 additions & 2 deletions .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -112,8 +112,20 @@ jobs:
- name: Gradle Wrapper Validation
uses: gradle/wrapper-validation-action@v2

- name: Gradle cache
uses: gradle/actions/setup-gradle@v3
- uses: actions/cache@v3
with:
path: |
~/.gradle/caches
~/.gradle/wrapper
key: ${{ runner.os }}-gradle-${{ hashFiles('**/**.gradle.kts', '**/gradle/wrapper/gradle-wrapper.properties', '**/libs.versions.toml') }}
restore-keys: |
${{ runner.os }}-gradle
- name: Install JDK 11
uses: actions/setup-java@v4
with:
distribution: 'zulu'
java-version: 11

# Retrieve the cached emulator snapshot.
- name: AVD cache
Expand Down

0 comments on commit d07b6bd

Please sign in to comment.