Update .gitea/workflows/deploy.yml
Some checks failed
Deploy / deploy (push) Failing after 0s

This commit is contained in:
2026-04-23 19:32:36 +00:00
parent 12f61d2bb2
commit 070ab369bb

View File

@@ -1,5 +1,32 @@
name: Deploy
on:
push:
branches:
- main
jobs:
deploy:
runs-on: vps-host
steps:
- name: Pull latest code
run: |
ls /var/www/
cd /var/www/bennysblog
git pull origin main
- name: Install Python dependencies
run: |
cd /var/www/bennysblog
python3 -m pip install -r requirements.txt --quiet
- name: Build CSS
run: |
cd /var/www/bennysblog
npx tailwindcss \
-i static/src/app.css \
-o static/css/app.css \
--minify
- name: Restart service
run: sudo systemctl restart benny