Fix crash, and rebase some patch #5
Workflow file for this run
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: Leaves Test CI | |
on: | |
push: | |
branches-ignore: [ master ] | |
pull_request: | |
workflow_dispatch: | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Get repository | |
uses: actions/checkout@v4 | |
with: | |
fetch-depth: 0 | |
- name: Get JDK 17 | |
uses: actions/setup-java@v4 | |
with: | |
java-version: "21" | |
distribution: "zulu" | |
- name: Setup Gradle | |
uses: gradle/actions/setup-gradle@v3 | |
with: | |
add-job-summary: never | |
generate-job-summary: false | |
cache-read-only: false | |
- name: Setup Git Config | |
run: | | |
git config --global user.email "[email protected]" | |
git config --global user.name "LeavesMC CI" | |
- name: Get Build Number | |
run: bash scripts/GetBuildNumber.sh | |
- name: Apply Patches | |
run: ./gradlew applyPatches | |
- name: Create Leavesclip Jar | |
run: ./gradlew createMojmapLeavesclipJar | |
env: | |
BUILD_NUMBER: ${{ env.BUILD_NUMBER }} | |
- name: Get Release Info | |
run: sh scripts/GetReleaseInfo.sh | |
env: | |
BUILD_NUMBER: ${{ env.BUILD_NUMBER }} | |
- name: Upload Artifact | |
uses: actions/upload-artifact@v4 | |
with: | |
name: ${{ env.jar }} | |
path: ${{ env.jar }} |