Skip to content

Publish package to the Maven Central Repository and GitHub Packages #3

Publish package to the Maven Central Repository and GitHub Packages

Publish package to the Maven Central Repository and GitHub Packages #3

Workflow file for this run

name: Publish package to the Maven Central Repository and GitHub Packages
on:
workflow_dispatch
jobs:
publish:
runs-on: ubuntu-latest
permissions:
contents: read
packages: write
steps:
- uses: actions/checkout@v3
# - name: Set up Java for publishing to Maven Central Repository
# uses: actions/setup-java@v3
# with:
# java-version: '11'
# distribution: 'adopt'
# server-id: ossrh
# server-username: MAVEN_USERNAME
# server-password: MAVEN_PASSWORD
# - name: Publish to the Maven Central Repository
# run: mvn --batch-mode deploy
# env:
# MAVEN_USERNAME: ${{ secrets.OSSRH_USERNAME }}
# MAVEN_PASSWORD: ${{ secrets.OSSRH_TOKEN }}
- name: Set up Java for publishing to GitHub Packages
uses: actions/setup-java@v3
with:
java-version: '17'
distribution: 'zulu'
- name: Publish to GitHub Packages
run: mvn --batch-mode deploy
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}