Merge pull request #1 from koompi/thith #1
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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' |