diff --git a/.github/workflows/deploy_client.yaml b/.github/workflows/deploy_client.yaml new file mode 100644 index 0000000..02cdbc9 --- /dev/null +++ b/.github/workflows/deploy_client.yaml @@ -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' \ No newline at end of file