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

v2.4.2-0.2.0

v2.4.2-0.2.0 #8

Workflow file for this run

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