Skip to content

Deploy to maven central #8

Deploy to maven central

Deploy to maven central #8

Workflow file for this run

name: Deploy to maven central
on:
release:
types: [ "created" ]
jobs:
build:
name: Build, test and publish to Github Packages
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Docker Compose Action
uses: isbang/[email protected]
- name: Set up JDK 17 and Set up Maven Central Repository
uses: actions/setup-java@v3
with:
java-version: '17'
distribution: 'temurin'
server-id: ossrh
server-username: MAVEN_USERNAME
server-password: MAVEN_TOKEN
gpg-private-key: ${{ secrets.GPG_SIGNING_KEY }}
gpg-passphrase: MAVEN_GPG_PASSPHRASE
- name: publish to maven central
run: mvn -P release --batch-mode deploy
env:
MAVEN_USERNAME: ${{ secrets.OSSRH_USERNAME }}
MAVEN_TOKEN: ${{ secrets.OSSRH_TOKEN }}
MAVEN_GPG_PASSPHRASE: ${{ secrets.GPG_SIGNING_KEY_PASSWORD }}