Skip to content

1.12.2-1.8.8

1.12.2-1.8.8 #59

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 17
uses: actions/setup-java@v3
with:
distribution: 'temurin'
java-version: 17
- 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 (forge)
uses: actions/upload-artifact@v3
with:
name: 1.20.1-forge
path: ${{ github.workspace }}/forge/build/libs
- name: Upload artifacts (fabric)
uses: actions/upload-artifact@v3
with:
name: 1.20.1-fabric
path: ${{ github.workspace }}/fabric/build/libs