Skip to content

Merge pull request #12 from openstandia/feat-timeout #3

Merge pull request #12 from openstandia/feat-timeout

Merge pull request #12 from openstandia/feat-timeout #3

Workflow file for this run

name: Release CI
on:
push:
branches:
- master
jobs:
build:
name: Build and release
runs-on: ubuntu-latest
if: "!contains(github.event.head_commit.message, '[ci skip]')"
steps:
- uses: actions/checkout@v2
- name: Set up JDK 11
uses: actions/setup-java@v1
with:
java-version: 11
- name: Cache Maven packages
uses: actions/cache@v1
with:
path: ~/.m2/repository
key: ${{ runner.os }}-maven-${{ hashFiles('**/pom.xml') }}
restore-keys: |
${{ runner.os }}-maven-
# TODO: Implement automate release
- name: Build with Maven
run: mvn -B package --file pom.xml