Automatically enable render list logic if vanilla meshes are enabled #102
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
# This workflow will build a Java project with Gradle | |
# For more information see: https://help.github.com/actions/language-and-framework-guides/building-and-testing-java-with-gradle | |
name: Java CI with Gradle | |
on: [push, pull_request] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout repo | |
uses: actions/[email protected] | |
with: | |
fetch-depth: 0 | |
- name: Validate Gradle wrapper | |
uses: gradle/[email protected] | |
- name: Set up JDK 1.8 | |
uses: actions/[email protected] | |
with: | |
distribution: 'temurin' | |
java-version: 8 | |
- name: Set up Gradle build | |
run: ./gradlew SetupCIWorkspace build | |
- name: Build with Gradle | |
run: ./gradlew cleanBuildAll | |
working-directory: publish | |
- name: Upload a build artifact | |
uses: actions/[email protected] | |
with: | |
name: Package | |
path: build/libs |