From f469ed2d5e7332ba2d2daef1188b2f90d775052e Mon Sep 17 00:00:00 2001 From: MrWhiff Date: Thu, 26 Feb 2026 23:16:15 +0000 Subject: [PATCH] =?UTF-8?q?Auto=20Deploy=20Hinzugef=C3=BCgt?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .forgejo/workflows/deploy.yml | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) create mode 100644 .forgejo/workflows/deploy.yml diff --git a/.forgejo/workflows/deploy.yml b/.forgejo/workflows/deploy.yml new file mode 100644 index 0000000..ca5c67c --- /dev/null +++ b/.forgejo/workflows/deploy.yml @@ -0,0 +1,24 @@ +name: Deploy AstraOS Panel + +on: + push: + branches: ["main"] + +jobs: + deploy: + runs-on: docker + + steps: + - name: Checkout repo + uses: actions/checkout@v4 + + - name: Deploy AstraOS folder + uses: appleboy/scp-action@v0.1.7 + with: + host: 127.0.0.1 + username: astraos + key: ${{ secrets.DEPLOY_KEY }} + port: 22 + source: "AstraOS/*" + target: "/home/astraos/Astra-OS-Panel" + overwrite: true \ No newline at end of file