Merge pull request #38 from TenDRILLL/dev #29
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: Deploy Headpat | |
on: | |
push: | |
branches: ["uwu"] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: CP files and Build | |
uses: appleboy/ssh-action@v1.0.3 | |
with: | |
key: ${{ secrets.SSH_KEY }} | |
host: ${{ secrets.SSH_IP }} | |
username: ${{ secrets.SSH_USERNAME }} | |
passphrase: ${{ secrets.SSH_PASSPHRASE }} | |
script: | | |
pm2 stop headpat > /dev/null | |
cd /home/ten/node/headpat | |
git pull origin uwu | |
rm -rf dist | |
mkdir -p dist/html | |
npm run build | |
pm2 start headpat > /dev/null |