Merge pull request #193 from utxostack/fix/healthcheck #103
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: Backend Deploy | |
on: | |
push: | |
branches: [develop] | |
paths: | |
- backend/** | |
workflow_dispatch: | |
jobs: | |
deploy-testnet: | |
environment: | |
name: testnet | |
url: https://testnet-api.explorer.rgbpp.io/graphql | |
runs-on: ubuntu-latest | |
steps: | |
- name: Deploy to testnet | |
uses: appleboy/[email protected] | |
env: | |
# GIT_BRANCH is used as a part of cache key prefix | |
GIT_BRANCH: 'develop' | |
with: | |
host: ${{ secrets.SSH_HOST }} | |
username: ${{ secrets.SSH_USERNAME }} | |
key: ${{ secrets.SSH_PRIVATE_KEY }} | |
script: | | |
cd ${{ secrets.SSH_WORK_DIR }} | |
git status | |
git fetch origin | |
git checkout ${{ github.sha }} | |
git status | |
echo ${{ secrets.SSH_PASSWORD }} | sudo -S docker compose ps | |
echo ${{ secrets.SSH_PASSWORD }} | sudo -S docker image prune -f | |
echo ${{ secrets.SSH_PASSWORD }} | sudo -S docker compose build | |
echo ${{ secrets.SSH_PASSWORD }} | sudo -S docker compose up -d | |
echo ${{ secrets.SSH_PASSWORD }} | sudo -S docker compose ps |