GH-891 Fix removing catboy using butcher, remove catboy on server shu… #2827
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: Java CI with Gradle | |
on: | |
push: | |
branches: | |
- master | |
pull_request: | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
java: | |
- 17 | |
fail-fast: false | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4.2.2 | |
- name: 'Set up JDK ${{ matrix.java }}' | |
uses: actions/setup-java@v4.6.0 | |
with: | |
distribution: adopt | |
java-version: '${{ matrix.java }}' | |
- name: Cache Gradle | |
uses: actions/cache@v4.2.0 | |
with: | |
path: ~/.gradle/caches | |
key: >- | |
${{ runner.os }}-gradle-${{ hashFiles('**/*.gradle*', | |
'**/gradle-wrapper.properties') }} | |
restore-keys: '${{ runner.os }}-gradle-' | |
- name: Grant execute permission for gradlew | |
run: chmod +x gradlew | |
- name: Build the Jar | |
run: './gradlew clean eternalcore-plugin:shadowJar' | |
- name: Upload a Build Artifact | |
uses: actions/upload-artifact@v4.6.0 | |
with: | |
name: 'EternalCore' | |
path: eternalcore-plugin/build/libs/EternalCore*.jar |