fix: 🐛 dev deploy github action 에서 branch 를 설정하지 않은 오류 수정 #7
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 Dev | |
on: | |
push: | |
branches: | |
- dev | |
jobs: | |
deploy: | |
name: Deploy Dev | |
runs-on: ubuntu-22.04 | |
steps: | |
- name: Deploy to Dev EC2 | |
uses: appleboy/ssh-action@master | |
with: | |
host: ${{ secrets.EC2_DEV_HOST }} | |
username: ${{ secrets.EC2_USER }} | |
key: ${{ secrets.EC2_SSH_KEY }} | |
script: | | |
cd $HOME && | |
echo "clone repository" && | |
sudo rm -rf ./42Stat-Backend && | |
git clone https://github.com/42Statistics/42Stat-Backend.git && | |
cd 42Stat-Backend && | |
git switch dev && | |
echo "run docker" && | |
docker-compose -f docker-compose.dev.yml down -v && | |
docker-compose -f docker-compose.dev.yml up -d |