添加Gui跨版本兼容层,screenAfterInitEvent
方法移动到ModEvents
,修改coremod检测方式
#340
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: Build | |
on: [ pull_request, push, workflow_dispatch ] | |
jobs: | |
Build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Set up JDK 21 | |
uses: actions/setup-java@v4 | |
with: | |
distribution: 'temurin' | |
java-version: 21 | |
- name: Cache | |
uses: actions/cache@v4 | |
with: | |
path: | | |
~/.gradle/caches | |
~/.gradle/wrapper | |
.gradle | |
key: ${{ runner.os }}-gradle-${{ hashFiles('**/*.gradle*', '**/gradle-wrapper.properties', 'build.gradle') }} | |
- name: Build with Gradle | |
run: | | |
chmod +x gradlew | |
./gradlew build | |
- name: Merge Fabric & NeoForge JARs | |
run: | | |
chmod +x gradlew | |
./gradlew fusejars | |
- name: Upload fabric artifacts | |
uses: actions/upload-artifact@v4 | |
with: | |
name: fabric-artifacts | |
path: ${{ github.workspace }}/fabric/build/libs | |
- name: Upload neoforge artifacts | |
uses: actions/upload-artifact@v4 | |
with: | |
name: neoforge-artifacts | |
path: ${{ github.workspace }}/neoforge/build/libs | |
- name: Upload merged artifacts | |
uses: actions/upload-artifact@v4 | |
with: | |
name: merged-artifacts | |
path: ${{ github.workspace }}/build/merged/* |