オフハンドに別のCMDを割り当てる機能を追加(動かない) #3
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: Deploy | |
on: | |
workflow_dispatch: | |
push: | |
branches: | |
- master | |
paths-ignore: | |
- "**.md" | |
- "renovate.json" | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
permissions: | |
contents: read | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Set up JDK 8 | |
uses: actions/setup-java@v4 | |
with: | |
java-version: '8' | |
distribution: 'adopt' | |
server-id: azisaba | |
- name: Download CrackShot v0.98.11 | |
run: curl -L -o CrackShot.jar https://dev.bukkit.org/projects/crackshot/files/3151915/download | |
- name: Install CrackShot into local mvn repo | |
run: mvn install:install-file -Dfile=./CrackShot.jar -DgroupId=com.shampaggon -DartifactId=CrackShot -Dversion=0.98.11 -Dpackaging=jar -DgeneratePom=true | |
- name: Install Spigot 1.15.2 | |
run: | | |
wget https://hub.spigotmc.org/jenkins/job/BuildTools/lastSuccessfulBuild/artifact/target/BuildTools.jar | |
java -jar BuildTools.jar --rev 1.15.2 | |
- name: Build with Maven | |
run: mvn -B package --file pom.xml | |
- name: Prepare settings.xml | |
run: | | |
echo "<settings><servers><server><id>azisaba</id><username>${{ secrets.REPO_USERNAME }}</username><password>${{ secrets.REPO_PASSWORD }}</password></server></servers></settings>" > $HOME/.m2/settings.xml | |
- name: Deploy | |
run: mvn deploy |