-
-
Notifications
You must be signed in to change notification settings - Fork 92
31 lines (28 loc) · 864 Bytes
/
Copy pathgradle.yml
File metadata and controls
31 lines (28 loc) · 864 Bytes
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
name: Java CI with Gradle
on: [pull_request, push]
jobs:
build:
runs-on: ubuntu-22.04
steps:
- name: Checkout Repository
uses: actions/checkout@v6
- name: Validate Gradle Wrapper
uses: gradle/actions/wrapper-validation@v3
- name: Set up JDK 25
uses: actions/setup-java@v5
with:
distribution: 'temurin'
java-version: 25
check-latest: true
- name: Build with Gradle
run: ./gradlew build
- name: Upload Build Artifacts - Fabric
uses: actions/upload-artifact@v7
with:
name: 'Sodium Extra Fabric Artifacts'
path: fabric/build/libs
- name: Upload Build Artifacts - NeoForge
uses: actions/upload-artifact@v7
with:
name: 'Sodium Extra NeoForge Artifacts'
path: neoforge/build/libs