mirror of
https://github.com/aaronleetw/Attendance.git
synced 2024-11-15 03:21:38 -08:00
45 lines
1 KiB
YAML
45 lines
1 KiB
YAML
name: Flask CICD
|
|
|
|
on:
|
|
push:
|
|
branches: [ master ]
|
|
pull_request:
|
|
branches: [ master ]
|
|
|
|
jobs:
|
|
build:
|
|
runs-on: ubuntu-latest
|
|
strategy:
|
|
max-parallel: 4
|
|
matrix:
|
|
python-version: [3.7]
|
|
|
|
steps:
|
|
- uses: actions/checkout@v2
|
|
- name: Set up Python ${{ matrix.python-version }}
|
|
uses: actions/setup-python@v1
|
|
with:
|
|
python-version: ${{ matrix.python-version }}
|
|
|
|
- name: Install Dependencies
|
|
run: |
|
|
python -m pip install --upgrade pip
|
|
pip install -r ./requirements.txt
|
|
|
|
- name: Check for Syntax Errors in app.py
|
|
run: |
|
|
python -m py_compile app.py
|
|
|
|
- name: CD
|
|
uses: appleboy/ssh-action@master
|
|
with:
|
|
host: ${{ secrets.HOST }}
|
|
USERNAME: ${{ secrets.USERNAME }}
|
|
KEY: ${{ secrets.SSHKEY }}
|
|
script: |
|
|
cd /home/ubuntu/Attendance
|
|
git pull
|
|
source ./Attendance/bin/activate
|
|
pip install -r ./requirements.txt
|
|
deactivate
|
|
sudo systemctl restart Attendance
|