-
Notifications
You must be signed in to change notification settings - Fork 0
52 lines (42 loc) · 1 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
name: Continuous Deployment
on:
push:
branches:
- main
jobs:
test:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v2
build:
runs-on: ubuntu-latest
steps:
- name: Set up Python
uses: actions/setup-python@v2
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: |
python -m pip install --upgrade pip
pip install pytest
pip install -r requirements.txt
- name: Run tests
run: |
python3 -m pytest
systemctl status gunicorn
- name: Deploy to Linode
if: ${{ success() }}
uses: appleboy/ssh-action@master
with:
host: ${{ secrets.WINC_HOST }}
username: ${{ secrets.WINC_USER_NAME }}
key: ${{ secrets.GH_SECRET }}
port: 22
script: |
cd /var/www/html/
git pull origin main