Skip to content

GH-21 Release 1.2.2 hotfix. #33

GH-21 Release 1.2.2 hotfix.

GH-21 Release 1.2.2 hotfix. #33

Workflow file for this run

name: 'DeathRun Build'
on:
push:
branches: [ "ver/latest" ]
pull_request:
branches: [ "ver/latest" ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: 'Checkout'
uses: 'actions/checkout@v3'
- name: 'Install Java Development Kit (17)'
uses: actions/setup-java@v3
with:
java-version: '17'
distribution: 'temurin'
cache: maven
- name: 'Build (Maven)'
run: 'mvn clean package'
- name: Upload (API)
uses: actions/upload-artifact@v3
with:
name: 'DeathRun (API)'
path: 'api/target/*.jar'
- name: Upload (Core)
uses: actions/upload-artifact@v3
with:
name: 'DeathRun (Core)'
path: 'core/target/*.jar'