forked from zurichat/zc_messaging
-
Notifications
You must be signed in to change notification settings - Fork 0
35 lines (31 loc) · 1010 Bytes
/
dev-deploy.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
name: Zuri messaging dev Deployment
on:
# Triggers the workflow on push or pull request events but only for the main branch
push:
branches: [dev]
# Allows you to run this workflow manually from the Actions tab
workflow_dispatch:
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Git Pull on Server
uses: appleboy/ssh-action@master
with:
host: ${{ secrets.ZURI_HOST }}
username: ${{ secrets.USERNAME }}
password: ${{ secrets.PASSWORD }}
script: |
cd /var/www/zuri.chat/zurimessaging/dev/zc_messaging/frontend
git fetch --all
git reset --hard origin/dev
git stash
git pull
yarn setup
yarn build
cd ../backend
source venv/bin/activate
python -m pip install --upgrade pip
pip install --no-cache-dir -r requirements.txt
pm2 restart zuri_messaging