ci: migrate GitHub actions to Gitea actions
Deploy CV Site (andreknie.de) / deploy (push) Canceled after 0s

This commit is contained in:
2026-07-22 15:42:06 +02:00
parent e1cf49b0a2
commit b46de6dc7d
649 changed files with 127224 additions and 2786 deletions
@@ -0,0 +1,23 @@
name: Deploy to VPS
on:
push:
branches: [main]
paths:
- 'shared/AI-Orchestrator/**'
jobs:
deploy:
runs-on: ubuntu-latest
steps:
- name: Deploy to VPS via SSH
uses: appleboy/ssh-action@v1
with:
host: 217.160.174.2
username: root
key: ${{ secrets.VPS_SSH_KEY }}
script: |
cd /opt/AI-Orchestrator
git pull origin main
docker compose up -d --build
echo "Deploy complete"