Merge branch 'AlphaMode-1.20.1-m' into 1.20.1 #197
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: Gradle CI | |
on: [push, pull_request] | |
permissions: | |
contents: read | |
jobs: | |
build: | |
environment: Kilt Build | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
with: | |
submodules: true | |
token: ${{ secrets.PAT_TOKEN }} | |
- name: Set up JDK 17 | |
uses: actions/setup-java@v3 | |
with: | |
java-version: '17' | |
distribution: 'temurin' | |
# Taken from https://github.com/CaffeineMC/sodium-fabric/blob/1.19.3/dev/.github/workflows/gradle.yml | |
- name: Cache/Uncache | |
uses: actions/cache@v2 | |
with: | |
path: | | |
~/.gradle/caches | |
~/.gradle/loom-cache | |
~/.gradle/wrapper | |
key: ${{ runner.os }}-gradle-${{ hashFiles('**/gradle-wrapper.properties') }} | |
restore-keys: | | |
${{ runner.os }}-gradle- | |
- name: Setup Dev Environment | |
run: ./gradlew setupDevEnvironment | |
- name: Build artifacts | |
run: ./gradlew remapJar | |
- name: Upload build artifacts | |
uses: actions/upload-artifact@v2 | |
with: | |
name: Kilt Build JARs | |
path: build/libs/Kilt-*.jar |