feat: add Gradle caching in CI workflows
All checks were successful
Build / build (pull_request) Successful in 9m31s
All checks were successful
Build / build (pull_request) Successful in 9m31s
This commit updates the CI build and release workflows to enable Gradle caching. This change adds `cache: gradle` to the Java setup action. These changes apply to both `build.yaml` and `release.yaml` files.
This commit is contained in:
parent
ab14b90143
commit
c55308f080
2 changed files with 2 additions and 0 deletions
1
.github/workflows/build.yaml
vendored
1
.github/workflows/build.yaml
vendored
|
@ -19,6 +19,7 @@ jobs:
|
|||
with:
|
||||
java-version: '17'
|
||||
distribution: 'temurin'
|
||||
cache: gradle
|
||||
|
||||
- name: Setup Android SDK
|
||||
uses: android-actions/setup-android@v3
|
||||
|
|
1
.github/workflows/release.yaml
vendored
1
.github/workflows/release.yaml
vendored
|
@ -18,6 +18,7 @@ jobs:
|
|||
with:
|
||||
java-version: '17'
|
||||
distribution: 'temurin'
|
||||
cache: gradle
|
||||
|
||||
- name: Setup Android SDK
|
||||
uses: android-actions/setup-android@v3
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue