Skip to content

Actions workflow to publish Docker image #1

Actions workflow to publish Docker image

Actions workflow to publish Docker image #1

Workflow file for this run

name: Build (non-master branch)
on:
push:
branches-ignore:
- master
pull_request:
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Set up JDK 17
uses: actions/setup-java@v3
with:
java-version: '17'
distribution: 'temurin'
cache: maven
- name: Install Graphviz
run: sudo apt-get -y install graphviz
- name: Build with Maven
run: mvn -B package --file pom.xml