Merge pull request #108 from Giveth/develop #17
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-main | |
on: | |
push: | |
branches: | |
- main | |
jobs: | |
deploy: | |
name: Deploy | |
runs-on: ubuntu-latest | |
steps: | |
- name: Production Auto-Deploy | |
uses: appleboy/ssh-action@v1.0.3 | |
with: | |
host: ${{ secrets.PROD_HOST }} | |
username: ${{ secrets.PROD_USERNAME }} | |
key: ${{ secrets.PROD_PRIVATE_KEY }} | |
port: 22 | |
script: | | |
cd $HOME/DeVouch-BE | |
git checkout main | |
git checkout -- . | |
git pull | |
docker compose stop devouch squid-db | |
docker compose up -d --build |