From d9a431d99a8c5bc3978b970ea0f51db0043fd5a2 Mon Sep 17 00:00:00 2001 From: Jackson Roberts Date: Wed, 8 Apr 2026 20:27:05 +0000 Subject: [PATCH] fix(ci): sync-cw-to-api must wait for migrate-api to complete Migration must finish before sync runs so the schema exists. --- .github/workflows/deploy.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/deploy.yaml b/.github/workflows/deploy.yaml index 4a41831..e562764 100644 --- a/.github/workflows/deploy.yaml +++ b/.github/workflows/deploy.yaml @@ -293,7 +293,7 @@ jobs: # must succeed before either the API or worker deploys. sync-cw-to-api: name: Sync - CW to API - needs: [build-api, build-worker] + needs: [migrate-api, build-worker] runs-on: ubuntu-latest steps: - name: Set the Kubernetes context