.gitea/workflows/deploy.yml hinzugefügt
This commit is contained in:
@@ -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/
|
||||||
Reference in New Issue
Block a user