-
Notifications
You must be signed in to change notification settings - Fork 2
37 lines (35 loc) · 962 Bytes
/
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
name: Build
on: [push]
jobs:
build:
runs-on: ubuntu-22.04
steps:
- name: Checkout repository
uses: actions/checkout@v3
- name: Validate Gradle wrapper
uses: gradle/wrapper-validation-action@v1
- name: Set up JDK 21
uses: actions/setup-java@v3
with:
distribution: 'temurin'
java-version: 21
check-latest: true
- name: Build using Gradle
run: |
chmod +x ./gradlew
./gradlew build
- name: Upload Fabric artifacts
uses: actions/upload-artifact@v3
with:
name: fabric
path: fabric/build/libs/
- name: Upload NeoForge artifacts
uses: actions/upload-artifact@v3
with:
name: neoforge
path: neoforge/build/libs/
- name: Upload merged artifact
uses: actions/upload-artifact@v3
with:
name: merged
path: build/libs/merged/