We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 91c4b06 commit 224f405Copy full SHA for 224f405
1 file changed
.github/workflows/build.yml
@@ -1,4 +1,4 @@
1
-name: Build and Push Docker image
+name: Build and Push Docker Image
2
3
on:
4
push:
@@ -17,6 +17,15 @@ jobs:
17
- name: Checkout source
18
uses: actions/checkout@v4
19
20
+ - name: Set up JDK 24
21
+ uses: actions/setup-java@v3
22
+ with:
23
+ distribution: temurin
24
+ java-version: 24
25
+
26
+ - name: Build with Gradle
27
+ run: ./gradlew build --no-daemon
28
29
- name: Log in to GitHub Container Registry
30
uses: docker/login-action@v3
31
with:
0 commit comments