Skip to content

Commit

Permalink
Create tekdi-server-deployment.yaml
Browse files Browse the repository at this point in the history
  • Loading branch information
AbhilashKD authored Jul 15, 2024
1 parent 8b756dd commit 23e17dd
Showing 1 changed file with 27 additions and 0 deletions.
27 changes: 27 additions & 0 deletions .github/workflows/tekdi-server-deployment.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
name: Deploy to Tekdi-QA Server
on:
pull_request:
types: [closed]
branches:
- release-1.0.0
jobs:
deploy:
if: github.event.pull_request.merged == true
runs-on: ubuntu-latest
timeout-minutes: 15
steps:
- name: Deploy Stack
uses: appleboy/ssh-action@master
with:
host: ${{ secrets.HOST_NAME_TEKDI_QA }}
username: ${{ secrets.USERNAME_TEKDI_QA }}
key: ${{ secrets.EC2_SSH_KEY_TEKDI_QA }}
port: ${{ secrets.PORT_TEKDI_QA }}
script: |
cd ${{ secrets.TARGET_DIR_TEKDI_QA }}
if [ -f .env ]; then
rm .env
fi
echo "${{ secrets.QA_ENV }}" > .env
ls -ltra
./deploy.sh

0 comments on commit 23e17dd

Please sign in to comment.