Skip to content

Merge pull request #58 from boostcampwm2023/feat/57-introduction-vide… #5

Merge pull request #58 from boostcampwm2023/feat/57-introduction-vide…

Merge pull request #58 from boostcampwm2023/feat/57-introduction-vide… #5

Workflow file for this run

name: deploy
on:
push:
branches:
- main
jobs:
be-deploy:
runs-on: ubuntu-20.04
steps:
- name: SSH-deploy
uses: appleboy/ssh-action@master
with:
host: ${{secrets.VPC_HOST}}
username: ${{secrets.VPC_USER}}
password: ${{secrets.VPC_PASSWORD}}
port: ${{secrets.VPC_PORT}}
script: |
cd /home/web08-ByeolSoop
git pull origin main
cd BE
npm install --force
killall node
npm start
fe-deploy:
needs: be-deploy
runs-on: ubuntu-20.04
steps:
- name: SSH-deploy
uses: appleboy/ssh-action@master
with:
host: ${{secrets.VPC_HOST}}
username: ${{secrets.VPC_USER}}
password: ${{secrets.VPC_PASSWORD}}
port: ${{secrets.VPC_PORT}}
script: |
cd /home/web08-ByeolSoop/FE
npm install --force
npm start