Files
Portfolio/.gitea/workflows/deploy.yml
benny e482e2cefd
Some checks failed
Deploy Portfolio / deploy (push) Failing after 0s
Update .gitea/workflows/deploy.yml
2026-04-23 03:25:48 +00:00

24 lines
435 B
YAML

name: Deploy Portfolio
on:
push:
branches:
- main
jobs:
deploy:
runs-on: vps-host
steps:
- name: Pull latest code
run: |
cd ~/Portfolio
git pull origin main
- name: Install Python dependencies
run: |
cd ~/Portfolio
pip install -r requirements.txt
- name: Restart application service
run: |
sudo systemctl restart port