Merge pull request #80 from Giveth:add-giveth-verifiers #54
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: | |
deploy: | |
name: Deploy | |
runs-on: ubuntu-latest | |
steps: | |
- name: Staging Auto-Deploy | |
uses: appleboy/ssh-action@v1.0.3 | |
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 up -d --build |