mirror of
https://github.com/Melledy/Grasscutter.git
synced 2024-11-22 14:29:13 +00:00
51 lines
1.3 KiB
YAML
51 lines
1.3 KiB
YAML
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/actions-download-file@v1.4.0
|
|
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
|