Skip to content

Commit

Permalink
Create backend-gla-prod-deploy.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
PrasadAthani authored Nov 25, 2024
1 parent 9b0453e commit 9459c80
Showing 1 changed file with 43 additions and 0 deletions.
43 changes: 43 additions & 0 deletions .github/workflows/backend-gla-prod-deploy.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,43 @@
#It is deploying on server 15.206.144.84 For Dev Environment only please note.
name: Deploy to ALT_GLA_PROD
on:
push:
branches:
- prod
jobs:
build:
name: Generate Build and Deploy to DEV
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v3

- name: Setup Node Env
uses: actions/setup-node@v3
with:
node-version: 21.1.0

- name: Deploy to Server 1
uses: easingthemes/ssh-deploy@main
env:
SSH_PRIVATE_KEY: ${{ secrets.EC2_SSH_KEY_ALT_GLA_PROD }}
REMOTE_HOST: ${{ secrets.HOST_DNS_ALT_GLA_PROD }}
REMOTE_USER: ${{ secrets.USERNAME_ALT_GLA_PROD }}


- name: Set up SSH key
run: |
mkdir -p ~/.ssh
echo "${{ secrets.EC2_SSH_KEY_ALT_GLA_PROD }}" > ~/.ssh/id_rsa
chmod 600 ~/.ssh/id_rsa
# Add the SSH key to the known_hosts file (replace hostname with your actual hostname)
ssh-keyscan -H ${{ secrets.HOST_DNS_ALT_GLA_PROD }} >> ~/.ssh/known_hosts
sudo apt-get install sshpass
- name: Deploy to server
run: |
sshpass -p '${{ secrets.EC2_SSH_KEY_ALT_GLA_PROD }}' ssh -v -o StrictHostKeyChecking=no ${{ secrets.USERNAME_ALT_GLA_PROD }}@${{ secrets.HOST_DNS_ALT_GLA_PROD }} <<'ENDSSH'
cd /home/prasad/alt-gla-prod-backend
./deploy.sh
ENDSSH

0 comments on commit 9459c80

Please sign in to comment.