Skip to content

Commit

Permalink
ci update
Browse files Browse the repository at this point in the history
  • Loading branch information
ttschampel committed May 29, 2024
1 parent 51276e9 commit eee3cdc
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 5 deletions.
7 changes: 4 additions & 3 deletions .github/workflows/checks.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -38,13 +38,14 @@ jobs:
- name: Set up JDK
uses: actions/setup-java@5896cecc08fd8a1fbdfaf517e29b571164b031f7
with:
java-version: "20"
java-version: "21"
distribution: "temurin"
server-id: github
- name: Maven Verify
run: |
mvn --batch-mode clean install -DskipTests
mvn --batch-mode verify
mvn --batch-mode clean install -DskipTests -s settings.xml
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}


ci:
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -32,11 +32,11 @@ jobs:
- name: Set up JDK
uses: actions/setup-java@5896cecc08fd8a1fbdfaf517e29b571164b031f7
with:
java-version: "20"
java-version: "21"
distribution: "temurin"
server-id: github
- name: Publish package
run: mvn --batch-mode deploy
run: mvn --batch-mode deploy -s settings.xml
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

0 comments on commit eee3cdc

Please sign in to comment.