feat: add ClientPlayLifecycleEvents #172
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 | |
jobs: | |
build: | |
runs-on: ubuntu-20.04 | |
steps: | |
- name: Checkout Repository | |
uses: actions/checkout@v2 | |
with: | |
persist-credentials: false | |
fetch-depth: 0 | |
- name: Enable Caching | |
uses: actions/cache@v2 | |
with: | |
path: | | |
~/.gradle/caches | |
~/.gradle/loom-cache | |
~/.gradle/wrapper | |
key: gradle-${{ hashFiles('**/gradle-wrapper.properties') }}-${{ hashFiles('./gradle.properties') }} | |
restore-keys: gradle | |
- name: Validate Gradle Wrapper | |
uses: gradle/wrapper-validation-action@v1 | |
- name: Setup JDK 21 | |
uses: actions/setup-java@v1 | |
with: | |
java-version: 21 | |
- name: Build | |
run: ./gradlew clean neoforge:build fabric:build | |
- name: Capture Fabric Build Artifacts | |
uses: actions/upload-artifact@v2 | |
with: | |
name: Fabric Artifacts | |
path: fabric/build/libs/ | |
- name: Capture NeoForge Build Artifacts | |
uses: actions/upload-artifact@v2 | |
with: | |
name: NeoForge Artifacts | |
path: neoforge/build/libs/ |