Skip to content

Commit

Permalink
Merge pull request #6510 from JabRef/gradleCacheMaster
Browse files Browse the repository at this point in the history
Reenable caching of gradle
  • Loading branch information
Siedlerchr committed May 22, 2020
2 parents 62c8bf1 + bcce773 commit ef2a31c
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions .github/workflows/deployment.yml
Original file line number Diff line number Diff line change
Expand Up @@ -54,6 +54,13 @@ jobs:
uses: actions/setup-java@v1
with:
java-version: 14
- name: Restore gradle cache
uses: actions/cache@master
with:
path: ~/.gradle/caches
key: ${{ runner.os }}-gradle-${{ hashFiles('**/*.gradle*') }}
restore-keys: |
${{ runner.os }}-gradle-
- name: Build runtime image
run: ./gradlew -PprojVersion="${{ steps.gitversion.outputs.AssemblySemVer }}" -PprojVersionInfo="${{ steps.gitversion.outputs.InformationalVersion }}" jlinkZip
- name: Build installer
Expand Down

0 comments on commit ef2a31c

Please sign in to comment.