Skip to content

Commit

Permalink
chore: update workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
thisdudkin committed Sep 24, 2024
1 parent 9efcd45 commit cbe5cd8
Showing 1 changed file with 7 additions and 4 deletions.
11 changes: 7 additions & 4 deletions .github/workflows/maven-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,14 +10,17 @@ jobs:
build:

runs-on: ubuntu-latest
strategy:
matrix:
java: [ '21' ]

steps:
- uses: actions/checkout@v2
- name: Set up JDK 21
- name: Set up JDK ${{matrix.java}}
uses: actions/setup-java@v2
with:
java-version: '21'
distribution: 'temurin'
java-version: ${{matrix.java}}
distribution: 'adopt'
cache: maven
- name: Build with Maven
run: mvn -B install --file pom.xml -DdisableXmlReport=true
run: mvn -B package --file pom.xml

0 comments on commit cbe5cd8

Please sign in to comment.