-
Notifications
You must be signed in to change notification settings - Fork 4
56 lines (44 loc) · 1.41 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
52
53
54
55
56
name: Patch and Build
on:
push:
branches: [ "1.21" ]
workflow_dispatch:
#workflow_run:
#workflows: ["Automatically update Folia commit"]
# types:
# - completed
jobs:
compile_1_21_core_jar:
runs-on: windows-latest
permissions:
contents: write
actions: write
steps:
- name: Checkout Git Repository
uses: actions/checkout@v4
- name: Validate Gradle wrapper
uses: gradle/wrapper-validation-action@v2
- name: Setup Gradle
uses: gradle/gradle-build-action@v3
- name: Set up JDK
uses: actions/setup-java@v4
with:
distribution: temurin
java-version: 21
- name: Configure Git User Details
run: |
git config --global user.email "actions@github.com" && git config --global user.name "Github Actions"
- name: Apply Patches
run: ./gradlew applyPatches
- name: Build MojmapPaperclip
run: ./gradlew createMojmapPaperclipJar
- name: Build ReobfPaperclip
run: ./gradlew createReobfPaperclipJar
- name: Make release
uses: marvinpinto/action-automatic-releases@master
with:
title: "Foldenor 1.21 release"
automatic_release_tag: "1.21"
files: build/libs/*
repo_token: "${{ secrets.GITHUB_TOKEN }}"
prerelease: false