Skip to content

build: releasing version 7.1.0 #156

build: releasing version 7.1.0

build: releasing version 7.1.0 #156

Workflow file for this run

name: Build
on:
push:
branches:
- '**'
pull_request:
branches:
- main
jobs:
build:
name: Build
runs-on: ubuntu-latest
if: "startsWith(github.event.head_commit.message, 'build: releasing version') != true"
steps:
- name: Checkout
uses: actions/checkout@v2
- name: Setup Java
uses: actions/setup-java@v2
with:
distribution: 'adopt'
java-version: 8
- name: Cache Maven
uses: actions/cache@v2
with:
path: ~/.m2
key: ${{ runner.os }}-m2-${{ hashFiles('**/pom.xml') }}
restore-keys: ${{ runner.os }}-m2
- name: Build
run: mvn --no-transfer-progress -B -U --file pom.xml install