Fix batcher drawing recipe categories in wrong spot on BoM screen #740
Workflow file for this run
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: [ pull_request, push ] | |
jobs: | |
build: | |
strategy: | |
matrix: | |
java: [ 21 ] | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v2 | |
- name: setup JDK${{ matrix.java }} | |
uses: actions/setup-java@v1 | |
with: | |
java-version: ${{ matrix.java }} | |
- uses: actions/cache@v2 | |
with: | |
path: | | |
~/.gradle/caches | |
~/.gradle/loom-cache | |
~/.gradle/wrapper | |
key: ${{ runner.os }}-gradle-${{ hashFiles('**/gradle-wrapper.properties') }} | |
restore-keys: ${{ runner.os }}-gradle | |
- name: Build Fabric | |
run: ./gradlew :fabric:build | |
- name: Build NeoForge | |
run: ./gradlew :neoforge:build | |
# - name: Build Forge | |
# run: ./gradlew :forge:build | |
- name: Upload Artifacts | |
uses: actions/[email protected] | |
with: | |
name: Artifacts | |
path: | | |
fabric/build/libs/ | |
neoforge/build/libs/ | |
# forge/build/libs/ |