add service
Some checks failed
Deploy Smart Search Backend / deploy (push) Has been cancelled

This commit is contained in:
vallyenfail
2026-01-20 17:15:21 +03:00
69 changed files with 4967 additions and 879 deletions

View File

@@ -33,7 +33,10 @@ jobs:
echo "${{ secrets.DEPLOY_KEY }}" > ~/.ssh/id_rsa
chmod 600 ~/.ssh/id_rsa
ssh-keyscan -H 185.185.142.203 >> ~/.ssh/known_hosts 2>/dev/null || true
ssh -i ~/.ssh/id_rsa root@185.185.142.203 'cd /home/n8n && /usr/bin/docker compose up -d smart-search-backend'
ssh -i ~/.ssh/id_rsa root@185.185.142.203 '
docker rm -f smart-search-backend 2>/dev/null || true
cd /home/n8n && /usr/bin/docker compose up -d smart-search-backend
'
- name: Done
run: echo "✅ Backend deployed!"