Skip to content
This repository has been archived by the owner on Nov 16, 2023. It is now read-only.

feature: add docker build to release pipeline #27

feature: add docker build to release pipeline

feature: add docker build to release pipeline #27

Workflow file for this run

name: build
on:
push:
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v3
- name: Set up JDK
uses: actions/setup-java@v3
with:
java-version: '11'
distribution: 'adopt'
- name: Build with Maven
run: mvn --batch-mode --update-snapshots --no-transfer-progress verify