Skip to content

Nightly Release

Nightly Release #13

name: Nightly Release
on:
workflow_dispatch: {}
jobs:
release:
runs-on: ubuntu-latest
name: release
env:
GITHUB_TOKEN: ${{secrets.RELEASE_TOKEN}}
steps:
- uses: actions/checkout@v2
with:
fetch-depth: 0
- uses: actions/[email protected]
with:
java-version: 11
- name: Install graphviz
run: sudo apt install graphviz
- name: Publish to GitHub Packages
run: mvn --batch-mode deploy -DrepositoryId=github
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}