Skip to content
This repository was archived by the owner on Nov 24, 2024. It is now read-only.

Farewell, Java Edition. #15

Farewell, Java Edition.

Farewell, Java Edition. #15

Workflow file for this run

name: Build
on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]
permissions:
contents: read
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Setup JDK
uses: actions/setup-java@v3
with:
java-version: '17'
distribution: 'temurin'
- name: Make gradlew executable
run: chmod +x gradlew
- name: Build
run: ./gradlew :client:shadowJar
- name: Upload JAR
uses: actions/upload-artifact@v3
with:
name: voxelthing
path: client/build/libs/voxelthing-all.jar