Skip to content

Update ChestLootRecipe.java #26

Update ChestLootRecipe.java

Update ChestLootRecipe.java #26

Workflow file for this run

# Automatically build the project and run any configured tests for every push
# and submitted pull request. This can help catch issues that only occur on
# certain platforms or Java versions, and provides a first line of defense
# against bad commits.
name: build
on: [pull_request, push, workflow_dispatch]
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Validate Gradle wrapper
uses: gradle/wrapper-validation-action@v2
- name: Setup JDK 21
uses: actions/setup-java@v4
with:
java-version: 21
distribution: microsoft
- name: Setup Gradle caches
uses: actions/cache@v4
with:
path: |
~/.gradle/caches
~/.gradle/loom-cache
~/.gradle/wrapper
key: ${{ runner.os }}-gradle-${{ hashFiles('**/gradle-wrapper.properties') }}
restore-keys: ${{ runner.os }}-gradle
- name: Make Gradle wrapper executable
run: chmod +x ./gradlew
- name: Build Fabric
run: ./gradlew :fabric:build
- name: Build NeoForge
run: ./gradlew :neoforge:build
- name: Upload artifacts
uses: actions/upload-artifact@v4
with:
name: Artifacts
path: |
fabric/build/libs/
neoforge/build/libs/