微修正 #40
This file contains hidden or 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: | |
| - "**" | |
| paths-ignore: | |
| - "**.md" | |
| - "renovate.json" | |
| jobs: | |
| build: | |
| runs-on: ubuntu-latest | |
| permissions: | |
| contents: read | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: Set up JDK 17 | |
| uses: actions/setup-java@v4 | |
| with: | |
| java-version: '17' | |
| 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: 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 |