Skip to content

Try version ranges for Fabric #72

Try version ranges for Fabric

Try version ranges for Fabric #72

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@v3
- name: Set up JDK 17
uses: actions/setup-java@v3
with:
java-version: '17'
distribution: 'temurin'
- name: Validate Gradle wrapper
uses: gradle/wrapper-validation-action@v1
- name: Build with Gradle
uses: gradle/gradle-build-action@v2
with:
arguments: build
- name: Publish Fabric
uses: actions/upload-artifact@v3
with:
name: Fabric
path: fabric/build/libs/
- name: Publish Forge
uses: actions/upload-artifact@v3
with:
name: Forge
path: forge/build/libs/
- name: Publish NeoForge
uses: actions/upload-artifact@v3
with:
name: NeoForge
path: neoforged/build/libs/