Merge pull request #261 from shreyas1434shinde/BugFixes #241
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 dev-scp on Tekdi | |
on: | |
push: | |
branches: | |
- shiksha-2.0 | |
jobs: | |
deploy: | |
runs-on: ubuntu-latest | |
timeout-minutes: 15 | |
steps: | |
- name: Deploy Stack | |
uses: appleboy/ssh-action@master | |
with: | |
host: ${{ secrets.HOST_NAME_PRATHAM_TEKDI }} | |
username: ${{ secrets.USERNAME_PRATHAM_TEKDI }} | |
key: ${{ secrets.EC2_SSH_KEY_PRATHAM_TEKDI }} | |
port: ${{ secrets.PORT_PRATHAM_TEKDI }} | |
script: | | |
cd ${{ secrets.TARGET_DIR_PRATHAM_TEKDI }} | |
./deploy.sh |