8000 Entity ESP scripting fix for edge cases · Zergatul/cheatutils@3cbbdf1 · GitHub
[go: up one dir, main page]
More Web Proxy on the site http://driver.im/
Skip to content

Entity ESP scripting fix for edge cases #3

Entity ESP scripting fix for edge cases

Entity ESP scripting fix for edge cases #3

Workflow file for this run

name: Build
on:
push:
branches:
- '1.21.[0-9]'
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v4
with:
submodules: true
- name: Setup Java
uses: actions/setup-java@v4
with:
distribution: 'adopt'
java-version: '21'
- name: Change permissions for gradlew
run: |
chmod +x ./mixin-plugin/annotation-processor/gradlew
chmod +x ./fabric/gradlew
chmod +x ./forge/gradlew
chmod +x ./neoforge/gradlew
- name: Build Annotation Processor
run: |
pushd ./mixin-plugin/annotation-processor
./gradlew build
popd
- name: Build Forge
run: |
pushd ./forge
./gradlew build
popd
- name: Build Fabric
run: |
pushd ./fabric
./gradlew build
popd
- name: Build NeoForge
run: |
pushd ./neoforge
./gradlew build
popd
- name: Upload Forge artifacts
uses: actions/upload-artifact@v4
with:
name: forge
path: ./forge/build/libs/*.jar
compression-level: 0
if-no-files-found: error
- name: Upload Fabric artifacts
uses: actions/upload-artifact@v4
with:
name: fabric
path: |
./fabric/build/libs/*.jar
!./fabric/build/libs/*-sources.jar
compression-level: 0
if-no-files-found: error
- name: Upload NeoForge artifacts
uses: actions/upload-artifact@v4
with:
name: neoforge
path: ./neoforge/build/libs/*.jar
compression-level: 0
if-no-files-found: error
0