some time I`ll replace aikar timings with spark #144
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Patch and Build | |
on: | |
push: | |
branches: [ "1.20.4" ] | |
workflow_dispatch: | |
jobs: | |
compile_1_20_4_core_jar: | |
runs-on: windows-latest | |
permissions: | |
contents: write | |
actions: write | |
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 | |
- name: Make release | |
uses: softprops/action-gh-release@v1 | |
with: | |
name: "1.20.4 build" | |
body: | | |
Foldenor build | |
Version: 1.20.4 | |
tag_name: "1.20.4_${{github.run_number}}" | |
files: build/libs/* | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} |