Skip to content

fix: set default condition while borrowing a dish #12

fix: set default condition while borrowing a dish

fix: set default condition while borrowing a dish #12

Workflow file for this run

name: Deploy code to EC2 instance
on:
push:
branches: [ main ]
jobs:
deploy:
runs-on: ubuntu-latest
steps:
- name: Rebuild backend and deploy
uses: appleboy/ssh-action@master
with:
host: ${{ secrets.EC2_URL }}
username: 'ubuntu'
key: ${{ secrets.SSH_PRIVATE_KEY }}
script: |
cd /home/ubuntu/dishzero/DishZero/backend
export NVM_DIR=~/.nvm
source ~/.nvm/nvm.sh
npm i -g pm2
npm i -g yarn
pm2 stop dishzero
git pull
yarn install
yarn build
pm2 start yarn --name "dishzero" -- start