Skip to content
This repository has been archived by the owner on Feb 19, 2024. It is now read-only.

4.0-SNAPSHOT #3

4.0-SNAPSHOT

4.0-SNAPSHOT #3

Workflow file for this run

name: Publish package to GitHub Packages
on:
release:
types: [published]
jobs:
publish:
runs-on: ubuntu-latest
permissions:
contents: read
packages: write
steps:
- uses: actions/checkout@v4
- uses: actions/setup-java@v3
with:
java-version: '17'
distribution: 'temurin'
- name: Publish package
run: mvn --batch-mode deploy
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}