Update pipeline-develop.yml #12
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: auto-deploy-develop | |
on: | |
push: | |
branches: | |
- develop | |
jobs: | |
build: | |
name: Build | |
runs-on: ubuntu-latest | |
steps: | |
- name: Production Auto-Deploy | |
uses: appleboy/[email protected] | |
with: | |
host: ${{ secrets.STAGING_HOST }} | |
username: ${{ secrets.STAGING_USERNAME }} | |
key: ${{ secrets.STAGING_PRIVATE_KEY }} | |
port: 22 | |
script: | | |
cd $HOME/DeVouch-BE | |
git checkout develop | |
git checkout -- . | |
git pull | |
docker compose stop devouch squid-db | |
docker compose rm -v -f devouch squid-db | |
docker rmi $(docker images | grep 'devouch' | awk '{print $3}') | |
docker volume rm $(docker volume ls | grep 'db-data' | awk '{print $2}') | |
docker compose up -d --build |