fix startup #238
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.21.4" ] | |
workflow_dispatch: | |
#workflow_run: | |
#workflows: ["Automatically update Folia commit"] | |
# types: | |
# - completed | |
jobs: | |
compile_1_21_4_core_jar: | |
runs-on: windows-latest | |
permissions: | |
contents: write | |
actions: write | |
steps: | |
- name: Checkout Git Repository | |
uses: actions/checkout@v4 | |
- name: Set up JDK | |
uses: actions/setup-java@v4 | |
with: | |
distribution: temurin | |
java-version: 21 | |
- name: Setup Gradle | |
uses: gradle/actions/setup-gradle@v4 | |
- 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 applyAllPatches | |
- name: Build MojmapPaperclip | |
run: ./gradlew createMojmapPaperclipJar | |
- name: Make release | |
uses: marvinpinto/action-automatic-releases@master | |
with: | |
title: "Foldenor 1.21.4 release" | |
automatic_release_tag: "1.21.4" | |
files: build/libs/* | |
repo_token: "${{ secrets.GITHUB_TOKEN }}" | |
prerelease: false |