-
Notifications
You must be signed in to change notification settings - Fork 2
33 lines (32 loc) · 971 Bytes
/
gradle.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
name: Gradle build
on: [push, pull_request, workflow_dispatch]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Cache Gradle stuff
uses: actions/cache@v3
with:
key: gradle-${{ hashFiles('*.gradle.kts', 'gradle.properties', '*/*.gradle.kts', 'gradle/**') }}
restore-keys: gradle-
path: |
~/.gradle/caches
~/.gradle/wrapper
.gradle/loom-cache
- name: Set up JDK 17
uses: actions/setup-java@v1
with:
java-version: 17
- name: Build with Gradle
run: ./gradlew build --stacktrace
- name: Upload Fabric artifacts
uses: actions/upload-artifact@v2
with:
name: fabric-jars
path: fabric/build/libs
- name: Upload NeoForge artifacts
uses: actions/upload-artifact@v2
with:
name: neoforge-jars
path: neoforge/build/libs