Skip to content

Merge pull request #63 from OP-TED/add-schematron-benchmark #102

Merge pull request #63 from OP-TED/add-schematron-benchmark

Merge pull request #63 from OP-TED/add-schematron-benchmark #102

Workflow file for this run

name: Publish package to GitHub Packages
on:
push:
branches:
- 'develop'
release:
types: [published]
# Allows to run this workflow manually from the Actions tab
workflow_dispatch:
jobs:
publish:
runs-on: ubuntu-latest
permissions:
contents: read
packages: write
steps:
- uses: actions/checkout@v4
- uses: actions/setup-java@v4
with:
java-version: '11'
distribution: 'adopt'
- name: Publish package
run: mvn --batch-mode deploy
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}