shootlimit #24
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
# This workflow will build a package using Maven and then publish it to GitHub packages when a release is created | |
# For more information see: https://github.com/actions/setup-java/blob/main/docs/advanced-usage.md#apache-maven-with-a-settings-path | |
name: Maven Package | |
on: [push, workflow_dispatch] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
permissions: | |
contents: read | |
packages: write | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Set up JDK 11 | |
uses: actions/setup-java@v4 | |
with: | |
java-version: '11' | |
distribution: 'temurin' | |
server-id: github # Value of the distributionManagement/repository/id field of the pom.xml | |
settings-path: ${{ github.workspace }} # location for the settings.xml file | |
- name: Check 1.15.2 NMS existence | |
id: check_nms | |
uses: andstor/file-existence-action@v3 | |
with: | |
files: "/home/runner/.m2/repository/org/spigotmc/spigot/1.15.2-R0.1-SNAPSHOT/spigot-1.15.2-R0.1-SNAPSHOT.pom" | |
- name: Download BuildTools | |
if: steps.check_nms.outputs.files_exists == 'false' | |
run: mkdir -p ./build/ && curl -L -o ./build/BuildTools.jar https://hub.spigotmc.org/jenkins/job/BuildTools/lastSuccessfulBuild/artifact/target/BuildTools.jar | |
- name: Run BuildTools | |
if: steps.check_nms.outputs.files_exists == 'false' | |
run: cd build && java -jar BuildTools.jar --rev 1.15.2 | |
- name: Check CrackShot existence | |
id: check_crackshot | |
uses: andstor/file-existence-action@v3 | |
with: | |
files: "/home/runner/.m2/repository/com/shampaggon/CrackShot/0.98.11/CrackShot-0.98.11.pom" | |
- name: Download CrackShot v0.98.11 | |
if: steps.check_crackshot.outputs.files_exists == 'false' | |
run: curl -L -o CrackShot.jar https://dev.bukkit.org/projects/crackshot/files/3151915/download | |
- name: Install CrackShot into local mvn repo | |
if: steps.check_crackshot.outputs.files_exists == 'false' | |
run: mvn install:install-file -Dfile=./CrackShot.jar -DgroupId=com.shampaggon -DartifactId=CrackShot -Dversion=0.98.11 -Dpackaging=jar -DgeneratePom=true | |
- name: Build with Maven | |
run: mvn -B package --file pom.xml | |
- name: Upload a Build Artifact | |
uses: actions/[email protected] | |
with: | |
path: /home/runner/work/LeonCSAddon/LeonCSAddon/target/ |