-
Notifications
You must be signed in to change notification settings - Fork 25
32 lines (32 loc) · 1.02 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
name: Build FreedomChat
on: [ push, pull_request ]
jobs:
build:
# Only run on PRs if the source branch is on someone else's repo
if: ${{ github.event_name != 'pull_request' || github.repository != github.event.pull_request.head.repo.full_name }}
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Gradle wrapper validation
uses: gradle/wrapper-validation-action@v2
- name: Set up JDK
uses: actions/setup-java@v4
with:
distribution: 'temurin'
java-version: '21'
cache: 'gradle'
- name: Build
run: ./gradlew build
- name: Upload Paper
uses: actions/upload-artifact@v4
with:
name: FreedomChat Paper
path: "paper/build/libs/FreedomChat-*.jar"
- name: Upload Fabric
uses: actions/upload-artifact@v4
with:
name: FreedomChat Fabric
path: "fabric/build/libs/FreedomChat-*.jar"