Merge pull request #47 from Tusharmahajan12/new_aspsep12 #17
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: | ||
| 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/NOTIFICATION | ||
| ./deploy.sh | ||