Skip to content

Commit

Permalink
Merge remote-tracking branch 'master/master'
Browse files Browse the repository at this point in the history
  • Loading branch information
matsu1213 committed Jun 19, 2024
2 parents eb32632 + 56c5efa commit 2827433
Showing 1 changed file with 24 additions and 0 deletions.
24 changes: 24 additions & 0 deletions .github/workflows/maven-publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,30 @@ jobs:
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@v1
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.12.2

- name: Check CrackShot existence
id: check_crackshot
uses: andstor/file-existence-action@v1
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

Expand Down

0 comments on commit 2827433

Please sign in to comment.