Skip to content

Commit

Permalink
added distribution to GH setup java action
Browse files Browse the repository at this point in the history
  • Loading branch information
mswiderski committed Jun 22, 2024
1 parent d7cf294 commit ee8d64d
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 0 deletions.
2 changes: 2 additions & 0 deletions .github/workflows/docker-publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,8 @@ jobs:
uses: actions/setup-java@v4
with:
java-version: 17
distribution: 'temurin'
cache: 'maven'
- name: Docker login
env:
QUARKUS_CONTAINER_IMAGE_PASSWORD: ${{secrets.DOCKER_PASSWORD}}
Expand Down
2 changes: 2 additions & 0 deletions .github/workflows/maven-publish-arm64.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,5 +21,7 @@ jobs:
uses: actions/setup-java@v4
with:
java-version: 17
distribution: 'temurin'
cache: 'maven'
- name: Build Automatiko Approval Tasks
run: mvn -B package -Pcontainer-arm64 --file pom.xml
2 changes: 2 additions & 0 deletions .github/workflows/maven-publish-native.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,5 +21,7 @@ jobs:
uses: actions/setup-java@v4
with:
java-version: 17
distribution: 'temurin'
cache: 'maven'
- name: Build Automatiko Approval Tasks
run: mvn -B package -Pcontainer-native --file pom.xml
2 changes: 2 additions & 0 deletions .github/workflows/maven-publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,8 @@ jobs:
uses: actions/setup-java@v4
with:
java-version: 17
distribution: 'temurin'
cache: 'maven'
- name: Build Automatiko
run: mvn -B install -DskipTests --file automatiko/pom.xml
- name: Build Automatiko Approval Tasks
Expand Down

0 comments on commit ee8d64d

Please sign in to comment.