-
Notifications
You must be signed in to change notification settings - Fork 1
39 lines (31 loc) · 1.1 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
name: Build
on: [ push, pull_request, workflow_dispatch ]
jobs:
build:
runs-on: ubuntu-22.04
if: "!contains(github.event.head_commit.message, 'skip ci') && !contains(github.event.head_commit.message, 'ci skip')"
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Validate gradle wrapper
uses: gradle/actions/wrapper-validation@v3
- name: Setup java 21
uses: actions/setup-java@v4
with:
java-version: 21
distribution: temurin
cache: gradle
- name: Set git identity
run: |
git config --global user.email "[email protected]"
git config --global user.name "Github Actions"
- name: Apply patches
run: ./gradlew applyPatches --no-daemon
- name: Build mojang-mapped paperclip jar
run: ./gradlew createMojmapPaperclipJar --no-daemon
- name: Upload reobfuscated paperclip jar
uses: actions/upload-artifact@v4
with:
name: CloudPlane-Artifacts
path: build/libs/CloudPlane-paperclip-*
if-no-files-found: error