Update github_release.yml

This commit is contained in:
CappielloAntonio 2023-06-19 19:34:51 +02:00 committed by GitHub
parent c94bfe50b8
commit 2807cec495
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -9,11 +9,11 @@ jobs:
setup:
runs-on: ubuntu-latest
steps:
- name: Setup JDK 17
- name: Setup JDK 8
uses: actions/setup-java@v3
with:
distribution: 'temurin'
java-version: '17'
java-version: 8
build:
needs: setup
@ -21,6 +21,14 @@ jobs:
steps:
- uses: actions/checkout@v3
- name: Cache Gradle and wrapper
uses: actions/cache@v3
with:
path: |
~/.gradle/caches
~/.gradle/wrapper
key: ${{ runner.os }}-gradle-${{ hashFiles('**/*.gradle*') }}
- name: Make gradlew executable
run: chmod +x ./gradlew