Skip to content

Merge pull request #40 from OP-TED/bugfix/fix-incorrect-warning #70

Merge pull request #40 from OP-TED/bugfix/fix-incorrect-warning

Merge pull request #40 from OP-TED/bugfix/fix-incorrect-warning #70

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@v3
- uses: actions/setup-java@v3
with:
java-version: '11'
distribution: 'adopt'
- name: Publish package
run: mvn --batch-mode deploy
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}