forked from danswer-ai/danswer
-
Notifications
You must be signed in to change notification settings - Fork 0
41 lines (34 loc) · 1.05 KB
/
redeploy.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
36
37
38
39
40
41
name: Deploy on Production Update
on:
push:
branches:
- prod
jobs:
deploy:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v2
- name: Set up SSH
uses: webfactory/ssh-agent@v0.5.3
with:
ssh-private-key: ${{ secrets.PROD_SSH_KEY }}
- name: Deploy to Production
run: |
ssh -o StrictHostKeyChecking=no ${{ secrets.PROD_EC2_USER }}@${{ secrets.PROD_EC2_HOST }} << 'EOF'
cd danswer
make re-deploy
echo "Deployment complete"
EOF
- name: Test site live
- name: Wait before pinging
run: sleep 60
- name: Ping the website
run: |
response=$(curl -o /dev/null -s -w "%{http_code}\n" https://hubgpt-prod.idinsight.io)
if [ "$response" -eq 200 ]; then
echo "Site is up and returned HTTP status 200"
else
echo "Site might be down or is not returning HTTP status 200, returned HTTP status $response"
exit 1
fi