-
Notifications
You must be signed in to change notification settings - Fork 864
43 lines (38 loc) · 1.07 KB
/
deployment.yaml
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
name: Zuri main staging Deployment
on:
# Triggers the workflow on push or pull request events but only for the main branch
push:
branches: [staging]
# 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: node setup
# uses: actions/setup-node@v3
# with:
# node-version: '14'
# cache: 'yarn'
#
# - name: install deps
# run: yarn install
#
# - name: build
# run: yarn build
- 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/staging/zc_main
git fetch --all
git reset --hard origin/staging
git stash
git pull
yarn install
yarn build
pm2 restart zc_main_staging