Files
iddaai-be/.gitea/workflows/deploy.yml
T
2026-04-15 16:50:50 +03:00

40 lines
1.2 KiB
YAML

name: Deploy Iddaai Backend
on:
push:
branches:
- main
jobs:
deploy:
runs-on: ubuntu-latest
steps:
- name: Checkout Code
uses: actions/checkout@v4
- name: Deploy to Raspberry Pi via rsync
env:
SSH_PRIVATE_KEY: ${{ secrets.SSH_KEY }}
SERVER_IP: "95.70.252.214"
SERVER_PORT: "2222"
SERVER_USER: "haruncan"
run: |
mkdir -p ~/.ssh
echo "$SSH_PRIVATE_KEY" > ~/.ssh/id_rsa
chmod 600 ~/.ssh/id_rsa
ssh-keyscan -p $SERVER_PORT $SERVER_IP >> ~/.ssh/known_hosts
rsync -avz --exclude node_modules --exclude .git --exclude dist --exclude .next --exclude .DS_Store --exclude venv --exclude 'ai-engine/venv' --exclude __pycache__ -e "ssh -p $SERVER_PORT" ./ $SERVER_USER@$SERVER_IP:~/apps/iddaai/be/
- name: Restart Backend Docker Service
uses: appleboy/ssh-action@v1.0.3
with:
host: "95.70.252.214"
port: "2222"
username: "haruncan"
key: ${{ secrets.SSH_KEY }}
script: |
cd ~/apps/iddaai
docker compose build backend
docker compose up -d backend