-
Notifications
You must be signed in to change notification settings - Fork 4
56 lines (45 loc) · 1.35 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.20.6" ]
workflow_dispatch:
#workflow_run:
#workflows: ["Automatically update Folia commit"]
# types:
# - completed
jobs:
compile_1_20_6_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 "[email protected]" && git config --global user.name "Github Actions"
- name: Apply Patches
run: ./gradlew applyPatches
- name: Build
run: ./gradlew createReobfBundlerJar
- name: Make release
uses: softprops/action-gh-release@v1
with:
name: "1.20.6 build"
body: |
Foldenor build
Version: 1.20.6
tag_name: "1.20.6_${{github.run_number}}"
files: build/libs/*
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}