Skip to content

Commit

Permalink
Add CD-prod.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
Aokijiop committed May 20, 2024
1 parent 5e75cff commit 14ff049
Showing 1 changed file with 31 additions and 0 deletions.
31 changes: 31 additions & 0 deletions .github/workflows/CD-prod.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
name: EC2 Deploy

on:
push:
branches: main

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 }}
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 ~/aiss-backend &&
git checkout dev &&
git stash &&
git pull origin dev &&
yarn &&
pm2 restart app.js
'

0 comments on commit 14ff049

Please sign in to comment.