Add CI/CD pipeline
Some checks failed
Deploy to Server / deploy (push) Failing after 12s

This commit is contained in:
parent a81bafb813
commit 6ce6545870

View File

@ -0,0 +1,19 @@
name: Deploy to Server
on:
push:
branches:
- main
- master
jobs:
deploy:
runs-on: self-hosted
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Copy to web directory
run: |
sudo cp -r * /var/www/html/
echo "✅ Deployed successfully"