Skip to content

Commit

Permalink
made sure publish.yml uses same cache as nightly.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
Trinsdar committed Dec 13, 2024
1 parent 424fc27 commit c953ea9
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,13 @@ jobs:
uses: actions/setup-java@v1
with:
java-version: ${{ matrix.java }}
- name: Setup Gradle Dependencies Cache
uses: actions/cache@v4
with:
path: |
~/.gradle/caches
~/.gradle/wrapper
key: ${{ runner.os }}-gradle-caches-${{ hashFiles('**/*.properties') }}
- name: Make Gradle wrapper executable
if: ${{ runner.os != 'Windows' }}
run: chmod +x ./gradlew
Expand Down

0 comments on commit c953ea9

Please sign in to comment.