Skip to content

add simple status command #219

add simple status command

add simple status command #219

Workflow file for this run

name: CI
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
- name: 'Set up JDK 8'
uses: actions/setup-java@v3
with:
java-version: '8'
distribution: 'adopt'
cache: 'maven'
- name: Build with Maven
run: mvn -B -U package --file pom.xml
- name: Rename Artifact
run: mv target/TitansBattle*.jar target/TitansBattle.jar
- name: Upload Artifact
uses: actions/upload-artifact@v3
with:
name: TitansBattle
path: target/TitansBattle.jar