1
0

pls let the caching work
All checks were successful
Build & Publish / build (push) Successful in 2m55s

This commit is contained in:
Jannik Reimers 2024-12-11 21:24:21 +00:00
parent 2d0f156f45
commit 0548bf56bd

View File

@ -28,7 +28,7 @@ jobs:
distribution: temurin distribution: temurin
- name: Gradle Cache - name: Gradle Cache
uses: actions/cache@v4 uses: actions/cache/restore@v4
with: with:
path: | path: |
~/.gradle/caches ~/.gradle/caches
@ -44,14 +44,12 @@ jobs:
run: "./gradlew build" run: "./gradlew build"
- name: Gradle Cache - name: Gradle Cache
uses: actions/cache@v4 uses: actions/cache/save@v4
with: with:
path: | path: |
~/.gradle/caches ~/.gradle/caches
~/.gradle/wrapper ~/.gradle/wrapper
key: ${{ runner.os }}-gradle-${{ hashFiles('**/*.gradle*', '**/gradle-wrapper.properties') }} key: ${{ runner.os }}-gradle-${{ hashFiles('**/*.gradle*', '**/gradle-wrapper.properties') }}
restore-keys: |
${{ runner.os }}-gradle-
- name: Login to Gitea Registry - name: Login to Gitea Registry
uses: docker/login-action@v3 uses: docker/login-action@v3