Files
bennyshouse.net/.gitea/workflows/deploy.yml
benny 72851a46f8
Some checks failed
Deploy / deploy (push) Failing after 0s
Add .gitea/workflows/deploy.yml
2026-04-23 18:45:52 +00:00

27 lines
448 B
YAML

name: Deploy
on:
push:
branches:
- main
jobs:
deploy:
runs-on: vps-host
steps:
- name: Deploy
run: |
set -e
cd ${{ secrets.APP_DIR }}
git pull origin main
python3 -m pip install -r requirements.txt --quiet
npx tailwindcss \
-i static/src/app.css \
-o static/css/app.css \
--minify
sudo systemctl restart benny