Enforce text layer draw order #476
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: build | |
on: [push, pull_request, workflow_dispatch] | |
jobs: | |
build: | |
runs-on: ubuntu-24.04 | |
if: ${{ github.event_name != 'pull_request' || github.repository != github.event.pull_request.head.repo.full_name }} | |
steps: | |
- name: Checkout Repository | |
uses: actions/checkout@v4 | |
- name: Validate Gradle Wrapper | |
uses: gradle/actions/wrapper-validation@v4 | |
- name: Set up JDK 21 | |
uses: actions/setup-java@v4 | |
with: | |
distribution: temurin | |
java-version: 21 | |
check-latest: true | |
- name: Build with Gradle | |
run: ./gradlew build | |
- name: Upload Fabric Artifacts to GitHub | |
uses: actions/upload-artifact@v4 | |
with: | |
name: ImmediatelyFast Fabric | |
path: fabric/build/libs/ | |
- name: Upload Forge Artifacts to GitHub | |
uses: actions/upload-artifact@v4 | |
with: | |
name: ImmediatelyFast Forge | |
path: forge/build/libs/ | |
- name: Upload NeoForge Artifacts to GitHub | |
uses: actions/upload-artifact@v4 | |
with: | |
name: ImmediatelyFast NeoForge | |
path: neoforge/build/libs/ |