Skip to content

Commit

Permalink
Update maven-publish.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
matsu1213 authored Jun 19, 2024
1 parent 2827433 commit 7b648d0
Showing 1 changed file with 22 additions and 22 deletions.
44 changes: 22 additions & 22 deletions .github/workflows/maven-publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,28 +24,28 @@ jobs:
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
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 7b648d0

Please sign in to comment.