Skip to content

Start 0.14.7

Start 0.14.7 #335

Workflow file for this run

name: Java CI
on:
push:
branches:
- master
jobs:
build:
if: "! contains(toJSON(github.event.commits.*.message), '[SKIP-CI]')"
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@main
- name: Set up JDK 17
uses: actions/setup-java@main
with:
distribution: 'temurin'
java-version: '17'
- uses: actions/cache@main
with:
path: ~/.m2/repository
key: ${{ runner.os }}-maven-${{ hashFiles('**/pom.xml') }}
restore-keys: |
${{ runner.os }}-maven-
- name: Build with Maven
run: mvn -B package --file pom.xml
- uses: actions/upload-artifact@main
with:
name: ReActions
path: reactions/target/ReActions.jar