添加自动转载资源包,将模组调整为仅在客户端运行,添加自动切换语言,添加模组在modmenu的简介翻译(仅Fabric) #44
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: Build | |
on: [ pull_request, push, workflow_dispatch ] | |
jobs: | |
Build: | |
runs-on: ubuntu-22.04 | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Set up JDK 17 | |
uses: actions/setup-java@v3 | |
with: | |
distribution: 'temurin' | |
java-version: 17 | |
- name: Cache | |
uses: actions/cache@v2 | |
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: Upload artifacts (fabric) | |
uses: actions/upload-artifact@v3 | |
with: | |
name: fabric | |
path: ${{ github.workspace }}/fabric/build/libs | |
- name: Upload artifacts (forge) | |
uses: actions/upload-artifact@v3 | |
with: | |
name: forge | |
path: ${{ github.workspace }}/forge/build/libs |