Skip to content

Merge pull request #1029 from datafaker-net/renovate/actions-setup-ja… #910

Merge pull request #1029 from datafaker-net/renovate/actions-setup-ja…

Merge pull request #1029 from datafaker-net/renovate/actions-setup-ja… #910

Workflow file for this run

name: Publish package to the Maven Central Repository
on:
push:
branches: [ main ]
jobs:
publish:
runs-on: ubuntu-latest
steps:
- name: Configure GPG Key
run: |
echo -n "$GPG_SIGNING_KEY" | base64 --decode | gpg --import --no-tty --batch --yes
env:
GPG_SIGNING_KEY: ${{ secrets.GPG_SIGNING_KEY }}
- uses: actions/checkout@v4
with:
ref: 'main'
- name: Set up Maven Central Repository
uses: actions/setup-java@v4
with:
java-version: '17'
distribution: 'temurin'
cache: maven
server-id: ossrh
server-username: MAVEN_USERNAME
server-password: MAVEN_PASSWORD
- name: Publish package
run: ./mvnw --batch-mode -Dstyle.color=always deploy
env:
MAVEN_USERNAME: ${{ secrets.OSSRH_USERNAME }}
MAVEN_PASSWORD: ${{ secrets.OSSRH_TOKEN }}