Fix plugin constructor visibility level #14
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: | |
- "master" | |
- "LunarCode" | |
pull_request: | |
paths: | |
- "**.java" | |
types: | |
- opened | |
- synchronize | |
- reopened | |
jobs: | |
Build-Jar: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v2 | |
- 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 latest grasscutter jar | |
run: wget https://nightly.link/Melledy/LunarCore/workflows/build/development/LunarCore.zip && mkdir lib && unzip LunarCore.zip -d lib | |
- name: Change permission | |
run: chmod +x gradlew | |
- name: Run Gradle | |
run: ./gradlew jar | |
- name: Upload build | |
uses: actions/upload-artifact@v3 | |
with: | |
name: OpenCommand | |
path: '*.jar' |