Skip to content

Commit

Permalink
Added workflow to deploy SNAPSHOTS to OSSRH for testing
Browse files Browse the repository at this point in the history
  • Loading branch information
lwitkowski committed Aug 29, 2024
1 parent 0dda17d commit de4cb66
Showing 1 changed file with 38 additions and 0 deletions.
38 changes: 38 additions & 0 deletions .github/workflows/deploy-snapshots.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,38 @@
# This workflow will build and deploy a snapshot of your artifact to Sonatype Snapshots repository
name: Deploy Snapshots

concurrency:
group: ${{ github.ref }}-${{ github.workflow }}
cancel-in-progress: true
on:
workflow_dispatch:

defaults:
run:
shell: bash

jobs:
deploy-snapshot:
runs-on: ubuntu-latest
name: Deploy Snapshot artifacts
steps:
- uses: actions/checkout@v4

- uses: actions/setup-java@v4
with:
distribution: 'temurin'
java-version: 17
cache: 'maven'
server-id: 'ossrh'
server-username: MAVEN_USERNAME
server-password: MAVEN_PASSWORD
gpg-private-key: ${{ secrets.GPG_PRIVATE_KEY }}
gpg-passphrase: MAVEN_GPG_PASSPHRASE

- name: Deploy Snapshot
run: |
mvn -B clean deploy -DperformRelease=true -Drelease -Pquick -pl '!integration-test'
env:
MAVEN_USERNAME: ${{ secrets.OSSRH_USERNAME }}
MAVEN_PASSWORD: ${{ secrets.OSSRH_TOKEN }}
MAVEN_GPG_PASSPHRASE: ${{ secrets.GPG_PASSPHRASE }}

0 comments on commit de4cb66

Please sign in to comment.