Skip to content

GH-24 Release 1.3.2 hotfix. #51

GH-24 Release 1.3.2 hotfix.

GH-24 Release 1.3.2 hotfix. #51

Workflow file for this run

name: 'DeathRun Build'
on:
push:
pull_request:
jobs:
build:
runs-on: 'ubuntu-latest'
steps:
- name: 'Checkout'
uses: 'actions/checkout@v4'
- name: 'Install Java Development Kit (17)'
uses: 'actions/setup-java@v4'
with:
java-version: '17'
distribution: 'temurin'
- name: 'Assign Permissions'
run: 'chmod +x ./gradlew'
- name: 'Build (Gradle)'
run: './gradlew core:build'
- name: 'Upload (API)'
uses: 'actions/upload-artifact@v4'
with:
name: 'DeathRun (API)'
path: 'api/build/libs/*.jar'
- name: 'Upload (Core)'
uses: 'actions/upload-artifact@v4'
with:
name: 'DeathRun (Core)'
path: 'core/build/libs/*.jar'