Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
20 changes: 3 additions & 17 deletions .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,6 @@ jobs:
migrate:
needs: typecheck
runs-on: ubuntu-latest
if: github.ref == 'refs/heads/main'
steps:
- uses: actions/checkout@v4
- uses: supabase/setup-cli@v1
Expand All @@ -33,20 +32,7 @@ jobs:
env:
SUPABASE_ACCESS_TOKEN: ${{ secrets.SUPABASE_ACCESS_TOKEN }}
SUPABASE_DB_PASSWORD: ${{ secrets.SUPABASE_DB_PASSWORD }}
run: supabase db push
run: supabase db push --debug

docker:
needs: typecheck
runs-on: ubuntu-latest
if: github.ref == 'refs/heads/main'
steps:
- uses: actions/checkout@v4
- name: Build Docker image
run: docker build -t circu-link .
- name: Run smoke test
run: |
docker run -d --name circu-test -e GEMINI_API_KEY=ci-test circu-link
sleep 5
docker logs circu-test || true
docker stop circu-test || true
docker rm circu-test || true
# NitroCloud handles Docker build + deploy automatically on push.
# No Docker CI job needed here — NitroCloud builds its own container.
Loading