chore: π v0.9.0 #20
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/42Stat-Backend ; | |
docker-compose -f docker-compose.dev.yml down -v ; | |
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 && | |
git submodule init && | |
git submodule update && | |
echo "run docker" && | |
docker-compose -f docker-compose.dev.yml up -d |