Merge branch 'main' of https://github.com/Uni-dthon/mirisa_server #26
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 EC2 | |
on: | |
push: | |
branches: | |
- main | |
jobs: | |
deploy: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v3 | |
- name: Set up SSH | |
run: | | |
echo "${{ secrets.EC2_SSH_KEY }}" > private_key | |
chmod 600 private_key | |
- name: Deploy to EC2 | |
run: | | |
ssh -i private_key -o StrictHostKeyChecking=no [email protected] 'bash ~/deploy.sh' |