Skip to content

Issue/130 start new development cycle #74

Issue/130 start new development cycle

Issue/130 start new development cycle #74

Workflow file for this run

# This workflow will publish a Java project with Maven
# For more information see: https://docs.github.com/en/free-pro-team@latest/actions/guides/publishing-java-packages-with-maven
name: Java CI Publish with Maven
on:
pull_request:
types: [closed]
branches: [develop]
release:
types: [published]
jobs:
publish:
# Only run if releases are published or pull requests are merged,
# omit running if pull requests are closed without merging
if: github.event.pull_request.merged || github.event.action == 'published'
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up JDK 17
uses: actions/setup-java@v3
with:
distribution: 'zulu'
java-version: 17
cache: 'maven'
check-latest: true
- name: Publish with Maven
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
run: mvn -B deploy --file pom.xml