Skip to content

1.20.6

1.20.6 #311

Workflow file for this run

name: Build
on: [ pull_request, push, workflow_dispatch ]
jobs:
Build:
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v3
- name: Set up JDK 21
uses: actions/setup-java@v3
with:
distribution: 'temurin'
java-version: 21
- name: Cache
uses: actions/cache@v3
with:
path: |
~/.gradle/caches
~/.gradle/wrapper
.gradle
key: ${{ runner.os }}-gradle-${{ hashFiles('**/*.gradle*', '**/gradle-wrapper.properties', 'build.gradle') }}
- name: Build with Gradle
run: |
chmod +x gradlew
./gradlew build
- name: Upload artifacts (NeoForge)
uses: actions/upload-artifact@v3
with:
name: Artifact-NeoForge
path: ${{ github.workspace }}/neoforge/build/libs
- name: Upload artifacts (Fabric)
uses: actions/upload-artifact@v3
with:
name: Artifact-Fabric
path: ${{ github.workspace }}/fabric/build/libs