Skip to content

Commit

Permalink
github actions java version update, renamed jobs
Browse files Browse the repository at this point in the history
  • Loading branch information
zrbrown committed Dec 1, 2023
1 parent a9ae368 commit 7f61f68
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,14 +13,14 @@ on:
required: true
default: "X.Y.Z-SNAPSHOT"
jobs:
publish:
release:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-java@v4
with:
distribution: 'oracle'
java-version: '12'
java-version: '17'
server-username: OSSRH_USERNAME
server-password: OSSRH_PASSWORD
gpg-private-key: MAVEN_GPG_PRIVATE_KEY
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/tag-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,13 +4,13 @@ on:
tags:
- '*'
jobs:
publish:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-java@v4
with:
distribution: 'oracle'
java-version: '12'
java-version: '17'
- name: Run Tests
run: mvn clean verify

0 comments on commit 7f61f68

Please sign in to comment.