-
Notifications
You must be signed in to change notification settings - Fork 3
51 lines (43 loc) · 1.29 KB
/
build.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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
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@v2
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: Merge Fabric and Forge JARs
run: |
chmod +x gradlew
./gradlew mergeJars
- name: Upload artifacts (fabric)
uses: actions/upload-artifact@v3
with:
name: fabric
path: ${{ github.workspace }}/fabric/build/libs
- name: Upload artifacts (forge)
uses: actions/upload-artifact@v3
with:
name: forge
path: ${{ github.workspace }}/forge/build/libs
- name: Upload artifacts (Forgix merged jar)
uses: actions/upload-artifact@v3
with:
name: merged
path: ${{ github.workspace }}/build/libs/forgix