Skip to content

fix: correctly filter by businessId #31

fix: correctly filter by businessId

fix: correctly filter by businessId #31

Workflow file for this run

name: EC2 Prod Deploy
on:
push:
branches: dev
env:
CLIENT_HOSTNAME: ${{ secrets.PROD_CLIENT_HOSTNAME }}
jobs:
Deploy:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Deploy in EC2
env:
PRIVATE_KEY: ${{ secrets.PROD_AWS_EC2_PRIVATE_KEY }}
HOSTNAME: ${{ secrets.PROD_AWS_EC2_HOSTNAME }}
CLIENT_HOSTNAME: ${{ secrets.PROD_CLIENT_HOSTNAME }}
USER: ${{ secrets.AWS_EC2_USER }}
run: |
echo "$PRIVATE_KEY" > private_key.pem && chmod 600 private_key.pem
ssh -o StrictHostKeyChecking=no -i private_key.pem ${USER}@${HOSTNAME} '
#Now we have got the access of EC2 and we will start the deploy .
cd ~/fph-backend &&
git checkout dev &&
git stash &&
git pull origin dev &&
yarn &&
pm2 restart app.js
'