Fix path for generated types in CI workflow
Deploy Function / deploy (push) Successful in 26s
Deploy Migrations to Production / deploy (push) Successful in 13s

This commit is contained in:
2026-03-10 07:51:41 -06:00
parent 13645dc00a
commit 0c2310d0d7
+3 -3
View File
@@ -20,9 +20,9 @@ jobs:
- name: Verify generated types are checked in - name: Verify generated types are checked in
run: | run: |
supabase gen types typescript --local > types.gen.ts supabase gen types typescript --local > supabase/functions/_shared/database.types.ts
if ! git diff --ignore-space-at-eol --exit-code --quiet types.gen.ts; then if ! git diff --ignore-space-at-eol --exit-code --quiet supabase/functions/_shared/database.types.ts; then
echo "Detected uncommitted changes after build. See status below:" echo "Detected uncommitted changes after build. See status below:"
git diff git diff
exit 1 exit 1
fi fi