Skip to content

[maven-release-plugin] prepare for next development iteration #476

[maven-release-plugin] prepare for next development iteration

[maven-release-plugin] prepare for next development iteration #476

Workflow file for this run

name: Build PR
on:
push:
branches-ignore:
- master
- release
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout project
uses: actions/checkout@v2
- name: Cache local Maven repository
uses: actions/cache@v2
with:
path: ~/.m2/repository
key: ${{ runner.os }}-maven-${{ hashFiles('**/pom.xml') }}
restore-keys: ${{ runner.os }}-maven-
- name: Set up JDK 17
uses: actions/setup-java@v2
with:
java-version: '17'
distribution: 'temurin'
server-id: github # Value of the distributionManagement/repository/id field of the pom.xml
- name: Build Project and Image
run: ./mvnw test