Merge pull request #712 from subspace/debug-dockerfile #2
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 Docker Compose for Micro Squids on main | |
on: | |
push: | |
branches: | |
- main | |
paths: | |
- "indexers/general-squid/**" | |
- "indexers/rewards-squid/**" | |
- "indexers/accounts-squid/**" | |
env: | |
DOCKER_HOST: ssh://${{ secrets.SSH_USER }}@${{ secrets.SQUID_HOST }} | |
DEPLOY_PATH: /home/ubuntu/squids/astral | |
BRANCH_NAME: ${{ github.ref == 'refs/heads/main' && 'main' || github.ref }} | |
jobs: | |
deploy: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v3 | |
- name: Install SSH key | |
uses: webfactory/ssh-agent@dc588b651fe13675774614f8e6a936a468676387 # v0.9.0 | |
with: | |
ssh-private-key: ${{ secrets.SERVER_SSH_PRIVATE_KEY }} | |
- name: Add SSH host key fingerprint | |
run: | | |
ssh-keyscan -H ${{ secrets.SQUID_HOST }} >> ~/.ssh/known_hosts | |
- name: Deploy with Docker Compose | |
env: | |
SSH_USER: ${{ secrets.SSH_USER }} | |
run: | | |
mkdir -p ~/.ssh | |
ssh-keyscan -H ${{ secrets.SQUID_HOST }} >> ~/.ssh/known_hosts | |
ssh ${SSH_USER}@${{ secrets.SQUID_HOST }} " | |
if [ ! -d ${DEPLOY_PATH} ]; then | |
git clone https://github.com/subspace/astral.git ${DEPLOY_PATH} | |
else | |
cd ${DEPLOY_PATH} | |
git pull | |
fi | |
git checkout ${BRANCH_NAME} | |
docker-compose -f docker-compose-all-squids.yml pull | |
docker-compose -f docker-compose-all-squids.yml up -d | |
" | |
- name: Notify on failure | |
if: failure() | |
env: | |
SLACK_WEBHOOK: ${{ secrets.SLACK_WEBHOOK_URL }} | |
uses: 8398a7/action-slack@v3 | |
with: | |
status: ${{ job.status }} | |
fields: repo,message,commit,author,action,eventName,ref,workflow,job | |
author_name: Deployment failed | |
mention: here | |
if_mention: failure,cancelled | |
job_name: Deploy Docker Compose for Micro Squids on staging | |
channel: alerts | |
icon_emoji: ":github:" |