fix
All checks were successful
Build and Artifact / build (push) Successful in 6m58s

This commit is contained in:
2026-01-02 00:44:38 -06:00
parent 4dbe771330
commit bac8b1050d

View File

@@ -20,6 +20,18 @@ jobs:
with: with:
distribution: 'temurin' distribution: 'temurin'
java-version: '21' java-version: '21'
cache: 'gradle'
- name: Cache Gradle packages
uses: actions/cache@v3
with:
path: |
~/.gradle/caches
~/.gradle/wrapper
.gradle
key: ${{ runner.os }}-gradle-${{ hashFiles('**/*.gradle*', '**/gradle-wrapper.properties') }}
restore-keys: |
${{ runner.os }}-gradle-
- name: Grant execute permission for gradlew - name: Grant execute permission for gradlew
run: chmod +x gradlew run: chmod +x gradlew