-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Edit README.md and add template CD.yml
- Loading branch information
Showing
2 changed files
with
33 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,30 @@ | ||
name: EC2 Deploy | ||
|
||
on: | ||
push: | ||
branches: [dev-deployment] | ||
|
||
jobs: | ||
Deploy: | ||
runs-on: ubuntu-latest | ||
|
||
steps: | ||
- uses: actions/checkout@v3 | ||
- name: Deploy in EC2 | ||
env: | ||
PRIVATE_KEY: ${{ secrets.AWS_EC2_PRIVATE_KEY }} | ||
HOSTNAME : ${{ secrets.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 ~/npo-backend-template && | ||
git checkout dev && | ||
git stash && | ||
git pull origin dev && | ||
yarn && | ||
pm2 restart app.js | ||
' |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters