fix: settings page toggle and collapsible panels #66
This file contains hidden or 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 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)" |