Merge pull request #723 from Tusharmahajan12/new_aspmar25 #287
This file contains hidden or 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 | ||
| on: | ||
| push: | ||
| branches: | ||
| - | ||
| jobs: | ||
| deploy_to_server1: | ||
| runs-on: ubuntu-latest | ||
| timeout-minutes: 15 | ||
| steps: | ||
| - name: Deploy Stack | ||
| uses: appleboy/ssh-action@master | ||
| with: | ||
| host: ${{ secrets.HOST_AL }} | ||
| username: ${{ secrets.USERNAME_AL }} | ||
| key: ${{ secrets.SSH_PRIVATE_KEY_AL }} | ||
| port: ${{ secrets.PORT_AL }} | ||
| script: | | ||
| cd /home/ubuntu/Aspire-leader-dev/MICROSERVICES/BACKEND | ||
| ./deploy.sh | ||