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

This commit is contained in:
Braydon 2024-04-26 11:03:11 -07:00
parent 6d3418e16c
commit e4c92cc0e0

@ -1,54 +0,0 @@
name: Deploy Demo Plugin
on:
push:
branches: ["master"]
paths:
[
".gitea/workflows/deploy-demo-plugin.yml",
"DemoSpigotPlugin/**",
"!DemoSpigotPlugin/README.md",
]
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
- run: echo "Hello World" > hello.txt
# Upload the built jar to the
# remote server and restart it
- name: Upload Jar and Restart Remote Server
uses: rexlmanu/pterodactyl-upload-action@v2.4
with:
panel-host: ${{ secrets.PTERO_URL }}
api-key: ${{ secrets.PTERO_API_KEY }}
server-id: ${{ secrets.DEMO_SERVER_ID }}
source: "hello.txt"
target: "./"
restart: true # Restart after upload