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