-
Notifications
You must be signed in to change notification settings - Fork 0
54 lines (43 loc) · 1.01 KB
/
continuous-deployment.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
42
43
44
45
46
47
48
49
50
51
52
53
name: Continuous Deployment
on:
push:
branches:
- main
jobs:
test:
runs-on: ubuntu-20.04
steps:
- name: Checkout repository
uses: actions/checkout@v3
- name: Set up Python
uses: actions/setup-python@v3
with:
python-version: 3.x
- name: Use Node.js 16.x
uses: actions/setup-node@v2
with:
node-version: '16.x'
- name: Install dependencies
run: |
pip install -r requirements.txt
pip install pytest
- name: Start Gunicorn farm service
run: |
sudo systemctl enable --now farm
- name: Run tests
run: |
sudo systemctl status farm
pytest
deploy:
runs-on: ubuntu-20.04
needs: test
steps:
- name: Deploy to Linode
uses: appleboy/ssh-action@master
with:
host: ${{ secrets.WINC_HOST }}
username: ${{ secrets.WINC_USER_NAME }}
key: ${{ secrets.GH_SECRET }}
port: 22
script: |
sh ./deploy.sh