Skip to content

Update build.yml

Update build.yml #8

Workflow file for this run

name: Build DeathMessages
on:
push:
branches: [ master ]
jobs:
build:
name: Build
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Set up JDK 17
uses: actions/setup-java@v3
with:
java-version: 17
distribution: temurin
cache: maven
- name: Build with Maven
run: mvn clean kotlin:compile install
- name: Upload DeathMessages
uses: actions/upload-artifact@v3
with:
name: DeathMessages
path: target/DeathMessages-*.jar