Skip to content

Commit

Permalink
added workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
IsaacJReay committed Aug 7, 2023
1 parent 429691c commit d11efa8
Showing 1 changed file with 20 additions and 0 deletions.
20 changes: 20 additions & 0 deletions .github/workflows/deploy_client.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
name: Auto Build Deploy Client
on:
push:
paths:
- client/**
branches:
- main

jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Run SSHPASS
run: |
sshpass \
-p ${{ secrets.SSH_PASS }} \
ssh \
-o 'StrictHostKeyChecking no' \
-p ${{ secrets.SSH_PORT }} ${{ secrets.SSH_USER }}@${{ secrets.SSH_HOST }} \
'cd /kmp/camprotec/cam-professional && git checkout main && git pull && cd client && npm i --force && npm run build && pm2 restart 23'

0 comments on commit d11efa8

Please sign in to comment.