forked from sass/tipibot
18 lines
293 B
YAML
18 lines
293 B
YAML
name: Deploy
|
|
|
|
on:
|
|
push:
|
|
branches: [master]
|
|
|
|
jobs:
|
|
deploy:
|
|
runs-on: linux
|
|
steps:
|
|
- name: Deploy
|
|
run: |
|
|
cd ~/tipibot
|
|
git pull
|
|
source .venv/bin/activate
|
|
pip install -r requirements.txt
|
|
sudo systemctl restart tipibot
|