Fix setPrevScene bug (#2396) #2790
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: | |
workflow_dispatch: ~ | |
push: | |
paths: | |
- "**.java" | |
branches: | |
- "stable" | |
- "development" | |
- "unstable" | |
pull_request: | |
paths: | |
- "**.java" | |
types: | |
- opened | |
- synchronize | |
- reopened | |
jobs: | |
Build-Server-Jar: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v3 | |
- name: Setup Java | |
uses: actions/setup-java@v3 | |
with: | |
distribution: temurin | |
java-version: '17' | |
- name: Cache gradle files | |
uses: actions/cache@v2 | |
with: | |
path: | | |
~/.gradle/caches | |
~/.gradle/wrapper | |
./.gradle/loom-cache | |
key: ${{ runner.os }}-gradle-${{ hashFiles('*.gradle', 'gradle.properties', '**/*.accesswidener') }} | |
restore-keys: | | |
${{ runner.os }}-gradle- | |
- name: Download Handbook | |
uses: suisei-cn/[email protected] | |
with: | |
url: https://api.grasscutter.io/static/handbook.html | |
target: src/main/resources/html/ | |
- name: Run Gradle | |
run: ./gradlew -PskipHandbook=1 && ./gradlew jar -PskipHandbook=1 | |
- name: Upload build | |
uses: actions/upload-artifact@v3 | |
with: | |
name: Grasscutter | |
path: grasscutter-*.jar |