-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
d970e5e
commit 8b84a41
Showing
2 changed files
with
13 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -28,11 +28,14 @@ jobs: | |
|
||
# Setup JDK and Maven | ||
- name: Set up JDK | ||
uses: actions/setup-java@v3 | ||
uses: actions/setup-java@v4 | ||
with: | ||
java-version: 17 | ||
distribution: 'zulu' | ||
cache: maven | ||
gpg-private-key: ${{ secrets.GPG_SECRET_KEYS }} | ||
gpg-passphrase: GPG_PASSPHRASE | ||
|
||
|
||
# Prepare | ||
- name: Prepare Maven Wrapper | ||
|
@@ -46,6 +49,13 @@ jobs: | |
- name: Run itest | ||
run: ./mvnw integration-test failsafe:verify -Pitest -ntp -U -B -T4 | ||
|
||
# Create a release | ||
- name: Sign with Maven | ||
run: ./mvnw -B -ntp -Prelease | ||
env: | ||
GPG_PASSPHRASE: ${{ secrets.GPG_PASSPHRASE }} | ||
|
||
|
||
# - name: Upload coverage to Codecov | ||
# if: github.event_name == 'push' && github.actor != 'dependabot[bot]' | ||
# uses: codecov/[email protected] | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters