Skip to content

fix: settings page toggle and collapsible panels #66

fix: settings page toggle and collapsible panels

fix: settings page toggle and collapsible panels #66

Workflow file for this run

name: Deploy to DigitalOcean
on:
push:
branches:
- main
jobs:
deploy:
name: Deploy
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Deploy to Droplet
uses: appleboy/ssh-action@v1.0.3
with:
host: ${{ secrets.DROPLET_IP }}
username: root
key: ${{ secrets.DROPLET_SSH_KEY }}
script: |
cd /root/frandy.dev
git pull origin main
docker compose up -d --build
docker compose exec -T fastapi alembic upgrade head || true
docker image prune -f
echo "Deployed at $(date)"