-
Notifications
You must be signed in to change notification settings - Fork 1
35 lines (30 loc) · 948 Bytes
/
deploy.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
name: Deploy to H100
on:
push:
branches: [ main ]
paths:
- 'backend/**'
workflow_dispatch:
jobs:
deploy:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Install sshpass
run: sudo apt-get install -y sshpass
- name: Deploy with rsync
env:
SSH_PASS: ${{ secrets.SSH_PASSWORD }}
run: |
sshpass -p "$SSH_PASS" rsync -avz --delete \
-e "ssh -o StrictHostKeyChecking=no" \
--exclude '.env' \
--exclude 'venv/' \
--exclude '__pycache__/' \
--exclude '*.pyc' \
./backend/ [email protected]:/home/ubuntu/backend/
- name: Run deployment script
env:
SSH_PASS: ${{ secrets.SSH_PASSWORD }}
run: |
sshpass -p "$SSH_PASS" ssh -o StrictHostKeyChecking=no [email protected] 'bash /home/ubuntu/backend/deploy.sh'