Skip to content

Forge update checker #113

Forge update checker

Forge update checker #113

Workflow file for this run

# This workflow uses actions that are not certified by GitHub.
# They are provided by a third-party and are governed by
# separate terms of service, privacy policy, and support
# documentation.
# This workflow will build a Java project with Gradle and cache/restore any dependencies to improve the workflow execution time
# For more information see: https://help.github.com/actions/language-and-framework-guides/building-and-testing-java-with-gradle
name: Build
on:
push:
pull_request:
permissions:
contents: read
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Set up JDK 21
uses: actions/setup-java@v4
with:
java-version: '21'
distribution: 'temurin'
- name: Validate Gradle wrapper
uses: gradle/actions/wrapper-validation@v3
- name: Setup Gradle
uses: gradle/actions/setup-gradle@v3
- name: Build with Gradle
run: ./gradlew build
- name: Publish Fabric
uses: actions/upload-artifact@v4
with:
name: Fabric
path: fabric/build/libs/
- name: Publish Forge
uses: actions/upload-artifact@v4
with:
name: Forge
path: forge/build/libs/
- name: Publish NeoForge
uses: actions/upload-artifact@v4
with:
name: NeoForge
path: neoforged/build/libs/
- name: Publish Quilt
uses: actions/upload-artifact@v4
with:
name: Quilt
path: quilt/build/libs/