Arclight/.github/workflows/gradle.yml
Tianpao c3296bface
Some checks failed
Build / build (push) Failing after 31m29s
更新 .github/workflows/gradle.yml
2024-08-07 04:20:25 +00:00

46 lines
1.2 KiB
YAML

# This workflow will build a Java project with Gradle
# For more information see: https://help.github.com/actions/language-and-framework-guides/building-and-testing-java-with-gradle
name: Build
on:
push:
branches:
- '**'
jobs:
build:
runs-on: TPPC-ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Set up JDK 17
uses: actions/setup-java@v1
with:
java-version: '17'
- name: Cache Gradle User Files
uses: actions/cache@v1
with:
path: ~/.gradle
key: ${{ runner.os }}-gradle-user-home
- name: Cache Gradle Files
uses: actions/cache@v1
with:
path: ./.gradle
key: ${{ runner.os }}-gradle-file
- name: Grant execute permission for gradlew
run: chmod +x gradlew
- name: Build
env:
ARCLIGHT_FILES_TOKEN: ${{ secrets.ARCLIGHT_FILES_TOKEN }}
run: |
./gradlew cleanBuild remapSpigotJar idea --no-daemon -i --stacktrace --refresh-dependencies --continue
./gradlew build collect --no-daemon -i --stacktrace --continue
- name: Upload Artifact
uses: actions/upload-artifact@v4
with:
name: Arclight
path: ./build/libs/*.jar