We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents f1ba3b7 + e061afb commit dc26dbcCopy full SHA for dc26dbc
1 file changed
.github/actions/docker-build-or-tag/action.yml
@@ -46,6 +46,17 @@ runs:
46
- name: Set up Docker Buildx
47
uses: docker/setup-buildx-action@v3
48
49
+ - name: Set up JDK 17
50
+ uses: actions/setup-java@v3
51
+ with:
52
+ java-version: '17'
53
+ distribution: 'corretto'
54
+ cache: maven
55
+
56
+ - name: Build with Maven
57
+ run: mvn clean package -DskipTests
58
+ shell: bash
59
60
- name: Build and push
61
uses: docker/build-push-action@v6
62
with:
0 commit comments