Skip to content

Commit

Permalink
try sign
Browse files Browse the repository at this point in the history
  • Loading branch information
zambrovski committed Feb 26, 2024
1 parent d970e5e commit 8b84a41
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 3 deletions.
12 changes: 11 additions & 1 deletion .github/workflows/development.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -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]
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/master.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,12 +15,12 @@ jobs:

# Setup JDK and .m2/settings.xml
- name: Set up JDK
uses: actions/setup-java@v3
uses: actions/setup-java@v4
with:
java-version: 17
server-id: ossrh
distribution: 'zulu'
cache: maven
server-id: ossrh
server-username: OSS_CENTRAL_USERNAME # env variable for Maven Central
server-password: OSS_CENTRAL_PASSWORD # env variable for Maven Central

Expand Down

0 comments on commit 8b84a41

Please sign in to comment.