Skip to content

Commit

Permalink
Merge pull request #188 from trivago/1.12.0
Browse files Browse the repository at this point in the history
1.12.0
  • Loading branch information
bischoffdev authored May 8, 2024
2 parents b6a907c + e5a430f commit dfd353a
Show file tree
Hide file tree
Showing 17 changed files with 718 additions and 114 deletions.
14 changes: 7 additions & 7 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,19 +11,19 @@ jobs:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v3
- name: Set up JDK 11
uses: actions/setup-java@v3
- uses: actions/checkout@v4
- name: Set up JDK 17
uses: actions/setup-java@v4
with:
distribution: 'temurin'
java-version: '11'
java-version: '17'
cache: maven

- name: Set up Apache Maven Central
uses: actions/setup-java@v3
uses: actions/setup-java@v4
with:
distribution: 'temurin'
java-version: '11'
java-version: '17'
server-id: ossrh
server-username: MAVEN_USERNAME
server-password: MAVEN_PASSWORD
Expand All @@ -32,7 +32,7 @@ jobs:

- name: Publish to Apache Maven Central
working-directory: plugin-code
run: mvn deploy -B -Prelease
run: ./mvnw deploy -B -Prelease -no-transfer-progress
env:
MAVEN_USERNAME: ${{ secrets.OSSRH_USERNAME }}
MAVEN_PASSWORD: ${{ secrets.OSSRH_TOKEN }}
Expand Down
10 changes: 5 additions & 5 deletions .github/workflows/unit-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,13 +12,13 @@ jobs:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v3
- name: Set up JDK 11
uses: actions/setup-java@v3
- uses: actions/checkout@v4
- name: Set up JDK 17
uses: actions/setup-java@v4
with:
java-version: '11'
java-version: '17'
distribution: 'temurin'
cache: maven
- name: Test with Maven
working-directory: plugin-code
run: mvn test
run: ./mvnw test -no-transfer-progress
Loading

0 comments on commit dfd353a

Please sign in to comment.