Merge pull request #153 from rajnishdargan/release-1.1.0 #195
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
name: Deploy to Tekdi-QA-Server | |
on: | |
push: | |
branches: | |
- release-1.1.0 | |
jobs: | |
deploy: | |
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 | |
#Testing |