Skip to content

Commit

Permalink
Create uat-deployment.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
TekdiAshwini authored Nov 19, 2024
1 parent e7bc5f2 commit 8cba4d0
Showing 1 changed file with 36 additions and 0 deletions.
36 changes: 36 additions & 0 deletions .github/workflows/uat-deployment.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,36 @@
name: Deploy to Issuance to UAT
on:
push:
branches:
- main
jobs:
Deploy:
name: Deploy to UAT
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v3

- name: Deploy to UAT
uses: easingthemes/ssh-deploy@main
env:
SSH_PRIVATE_KEY: ${{ secrets.SSH_KEY_UAT }}
REMOTE_HOST: ${{ secrets.HOST_NAME_UAT }}
REMOTE_USER: ${{ secrets.USERNAME_UAT }}


- name: Set up SSH key
run: |
mkdir -p ~/.ssh
echo "${{ secrets.SSH_KEY_UAT }}" > ~/.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_NAME_UAT}} >> ~/.ssh/known_hosts
sudo apt-get install sshpass
- name: Deploy to server
run: |
sshpass -p '${{ secrets.SSH_KEY_UAT }}' ssh -v -o StrictHostKeyChecking=no ${{ secrets.USERNAME_UAT }}@${{ secrets.HOST_NAME_UAT }} <<'ENDSSH'
cd ${{ secrets.TARGET_UAT_DIR }}
./deploy.sh
ENDSSH

0 comments on commit 8cba4d0

Please sign in to comment.