Skip to content

Adapts questionnaire to new profile 1.5.0 #1

Adapts questionnaire to new profile 1.5.0

Adapts questionnaire to new profile 1.5.0 #1

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@v2
- name: Set up JDK 17
uses: actions/setup-java@v1
with:
java-version: 17
- name: Publish with Maven
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
run: mvn -B deploy --file pom.xml