From 61000d122ee55247dd2969c3f895b1a72ee0ee87 Mon Sep 17 00:00:00 2001 From: pixel Date: Sun, 8 Mar 2026 18:25:20 +0100 Subject: [PATCH] =?UTF-8?q?.gitea/workflows/deploy.yml=20hinzugef=C3=BCgt?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .gitea/workflows/deploy.yml | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 .gitea/workflows/deploy.yml diff --git a/.gitea/workflows/deploy.yml b/.gitea/workflows/deploy.yml new file mode 100644 index 0000000..a328795 --- /dev/null +++ b/.gitea/workflows/deploy.yml @@ -0,0 +1,15 @@ +name: Deploy Pixel Website +on: [push] + +jobs: + build-and-deploy: + runs-on: ubuntu-latest + steps: + - name: Checkout Code + uses: actions/checkout@v4 + + - name: Build and Copy + run: | + # Hier kämen deine Build-Befehle, z.B. npm install && npm run build + # Danach das Deployment in den Web-Ordner: + cp -r ./dist/* /var/www/pixel-faebits/ \ No newline at end of file