forked from PaperMC/Folia
-
Notifications
You must be signed in to change notification settings - Fork 0
47 lines (45 loc) · 1.55 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
name: Patch and Build
on:
push:
branches: [ "**" ]
pull_request:
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout Git Repository
uses: actions/checkout@v3
- name: Validate Gradle wrapper
uses: gradle/wrapper-validation-action@v1
- name: Setup Gradle
uses: gradle/gradle-build-action@v2
- name: Set up JDK
uses: actions/setup-java@v3
with:
distribution: 'temurin'
java-version: '17'
- 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 createReobfPaperclipJar createMojmapBundlerJar
- name: Upload Artifacts
uses: actions/upload-artifact@v3
with:
name: Folia Artifacts
path: ./build/libs/*.jar
- name: Set outputs
id: short_sha
run: echo "sha_short=$(git rev-parse --short HEAD)" >> $GITHUB_OUTPUT
- name: Publish Release
uses: softprops/action-gh-release@v1
with:
files: "build/libs/*.jar"
body: |
Commit ${{ steps.short_sha.outputs.sha_short }}
This release is automatically compiled by GitHub Actions
name: Folia Automation Compile ${{ steps.short_sha.outputs.sha_short }}
draft: false
tag_name: commit-${{ steps.short_sha.outputs.sha_short }}
generate_release_notes: true