forked from zurichat/zc_main
-
Notifications
You must be signed in to change notification settings - Fork 0
31 lines (27 loc) · 843 Bytes
/
dev-deployment.yaml
File metadata and controls
31 lines (27 loc) · 843 Bytes
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
name: Zuri main 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/zurimain/dev/zc_main
git fetch --all
git reset --hard origin/dev
git stash
git pull origin dev
yarn install --ignore-engines
yarn build
pm2 restart zc_main_dev