Skip to content

Commit

Permalink
quick test for snapshot deploys from pr
Browse files Browse the repository at this point in the history
  • Loading branch information
nicklasl authored Sep 28, 2023
1 parent acbf776 commit f1bdad0
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions .github/workflows/ci-pull-request.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,11 @@ jobs:
with:
distribution: 'zulu'
java-version: ${{ matrix.java_version }}
server-id: ossrh
server-username: ${{ secrets.OSSRH_USERNAME }} # username for Sonatype JIRA login
server-password: ${{ secrets.OSSRH_TOKEN }} # password for Sonatype JIRA login
gpg-private-key: ${{ secrets.GPG_PRIVATE_KEY }} # Full private key blob
gpg-passphrase: ${{ secrets.SIGN_KEY_PASS }} # Password chosen when creating the GPG key

- name: Cache Maven packages
uses: actions/[email protected]
Expand All @@ -35,3 +40,6 @@ jobs:

- name: Build with Maven
run: mvn --batch-mode --update-snapshots verify

- name: Deploy
run: mvn --batch-mode --update-snapshots deploy

0 comments on commit f1bdad0

Please sign in to comment.