Update build-neoforge.yml
This commit is contained in:
32
.github/workflows/build-neoforge.yml
vendored
32
.github/workflows/build-neoforge.yml
vendored
@@ -1,23 +1,33 @@
|
|||||||
name: Build
|
name: Build Neoforge
|
||||||
|
on: [pull_request, push]
|
||||||
on: [push, pull_request]
|
|
||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
build:
|
build:
|
||||||
runs-on: ubuntu-latest
|
strategy:
|
||||||
|
matrix:
|
||||||
|
# Use these Java versions
|
||||||
|
java: [21] # Current Java LTS
|
||||||
|
runs-on: ubuntu-22.04
|
||||||
steps:
|
steps:
|
||||||
- name: Checkout repository
|
- name: Checkout repository
|
||||||
uses: actions/checkout@v4
|
uses: actions/checkout@v4
|
||||||
with:
|
|
||||||
fetch-depth: 0
|
|
||||||
fetch-tags: true
|
|
||||||
|
|
||||||
- name: Setup JDK 17
|
- name: Setup JDK ${{ matrix.java }}
|
||||||
uses: actions/setup-java@v4
|
uses: actions/setup-java@v4
|
||||||
with:
|
with:
|
||||||
java-version: "17"
|
java-version: ${{ matrix.java }}
|
||||||
distribution: "temurin"
|
distribution: "microsoft"
|
||||||
|
|
||||||
- name: Build with Gradle
|
- name: Make Gradle wrapper executable
|
||||||
|
run: chmod +x ./neoforge/gradlew
|
||||||
|
|
||||||
|
- name: Build Neoforge Mod
|
||||||
working-directory: ./neoforge
|
working-directory: ./neoforge
|
||||||
run: ./gradlew build
|
run: ./gradlew build
|
||||||
|
|
||||||
|
- name: Capture build artifacts
|
||||||
|
if: ${{ matrix.java == '21' }}
|
||||||
|
uses: actions/upload-artifact@v4
|
||||||
|
with:
|
||||||
|
name: Artifacts
|
||||||
|
path: ./neoforge/build/libs/
|
||||||
|
Reference in New Issue
Block a user