29 lines
464 B
YAML
29 lines
464 B
YAML
name: Deploy Node App
|
|
|
|
on:
|
|
push:
|
|
branches:
|
|
- main
|
|
|
|
jobs:
|
|
deploy:
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
- name: Deploy to VPS
|
|
uses: appleboy/ssh-action@master
|
|
|
|
with:
|
|
host: 172.237.44.156
|
|
username: root
|
|
password: LinodeUser#26
|
|
port: 22
|
|
|
|
script: |
|
|
cd /root/IR-Node-Setup
|
|
|
|
git pull origin main
|
|
|
|
npm install
|
|
|
|
pm2 restart IR-Node-Setup |