From 6d3418e16ceb0f2d3ec762b024409ec363d255c3 Mon Sep 17 00:00:00 2001 From: Braydon Date: Fri, 26 Apr 2024 11:00:21 -0700 Subject: [PATCH] Update .gitea/workflows/deploy-demo-plugin.yml --- .gitea/workflows/deploy-demo-plugin.yml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.gitea/workflows/deploy-demo-plugin.yml b/.gitea/workflows/deploy-demo-plugin.yml index 327204c..276c84b 100644 --- a/.gitea/workflows/deploy-demo-plugin.yml +++ b/.gitea/workflows/deploy-demo-plugin.yml @@ -39,6 +39,8 @@ jobs: - 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 @@ -47,6 +49,6 @@ jobs: panel-host: ${{ secrets.PTERO_URL }} api-key: ${{ secrets.PTERO_API_KEY }} server-id: ${{ secrets.DEMO_SERVER_ID }} - source: "jars/DemoSpigotPlugin.jar" + source: "hello.txt" target: "./" restart: true # Restart after upload