We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7f3bec9 commit 3b13332Copy full SHA for 3b13332
.github/workflows/dev-build-release.yml
@@ -20,8 +20,16 @@ jobs:
20
- name: Clone project
21
uses: actions/checkout@v4
22
23
- - name: Install JDK 21
+ - name: Install JDK 8
24
uses: actions/setup-java@v4
25
+ with:
26
+ java-version: '8'
27
+ distribution: 'temurin'
28
+ check-latest: true
29
+
30
+ - name: Setup gradle
31
+ uses: gradle/actions/setup-gradle@v4
32
33
- name: Run build & publish with Gradle Wrapper
34
if: github.ref == 'refs/heads/master'
35
run: chmod +x ./gradlew && ./gradlew publishAllPublicationsToMavenRepository
0 commit comments