Skip to content

fix: typo

fix: typo #188

Workflow file for this run

name: CI-develop-branch
on:
push:
branches: [develop]
workflow_dispatch:
jobs:
deploy_to_do:
runs-on: ubuntu-latest
steps:
- name: Checkout the repo
uses: actions/checkout@v4
with:
ref: develop
- name: Deploy to Digital Ocean droplet via SSH action
uses: appleboy/[email protected]
with:
host: ${{ secrets.DEVELOP_HOST }}
username: ${{ secrets.USERNAME }}
key: ${{ secrets.SSH_KEY }}
script: |
eval `ssh-agent -s`
ssh-add cc
cd cc-portal \
&& git pull origin develop \
&& docker compose up -d --build \
&& docker container exec backend npm run typeorm:run-migrations \
&& docker image prune -f