RESTfulMC/.gitea/workflows/deploy-demo-plugin.yml

60 lines
1.5 KiB
YAML
Raw Normal View History

2024-04-24 16:37:19 -07:00
name: Deploy Demo Plugin
on:
push:
branches: ["master"]
2024-04-25 14:03:40 -07:00
paths:
[
".gitea/workflows/deploy-demo-plugin.yml",
"DemoSpigotPlugin/**",
"!DemoSpigotPlugin/README.md",
]
2024-04-24 16:37:19 -07:00
jobs:
docker:
strategy:
matrix:
java-version: ["17"]
maven-version: ["3.8.5"]
runs-on: "ubuntu-latest"
defaults:
run:
working-directory: "./DemoSpigotPlugin"
# Steps to run
steps:
# Checkout the repo
- name: Checkout
uses: actions/checkout@v4
# Setup Java and Maven
- name: Set up JDK and Maven
uses: s4u/setup-maven-action@v1.12.0
with:
java-version: ${{ matrix.java-version }}
distribution: "zulu"
maven-version: ${{ matrix.maven-version }}
# Build and package the jar
- name: Build Jar
run: mvn clean package -q -T4C
2024-04-24 16:43:08 -07:00
# Upload the built jar to the Demo server via SFTP
- name: Upload Jar via SFTP
2024-04-25 14:03:40 -07:00
uses: Creepios/sftp-action@v1.0.3
2024-04-24 16:43:08 -07:00
with:
2024-04-25 14:03:40 -07:00
host: ${{ secrets.DEMO_SFTP_SERVER }}
2024-04-24 16:43:08 -07:00
port: 2022
username: ${{ secrets.DEMO_SFTP_USER }}
password: ${{ secrets.DEMO_SFTP_PASS }}
2024-04-25 14:03:40 -07:00
localPath: "./target/DemoSpigotPlugin.jar"
remotePath: "./plugins"
2024-04-24 16:37:19 -07:00
2024-04-24 16:43:08 -07:00
# Restart the remote Demo server
2024-04-24 16:37:19 -07:00
- name: Restart Remote Server
uses: hwalker928/ptero-gitsync@v1.0
with:
panel-url: ${{ secrets.PTERO_URL }}
api-key: ${{ secrets.PTERO_API_KEY }}
2024-04-25 14:03:40 -07:00
server-id: ${{ secrets.DEMO_SERVER_ID }}