From 4113721ae1e92aa529665cf9c59a19e504c25da1 Mon Sep 17 00:00:00 2001 From: Marco Beretta <81851188+berry-13@users.noreply.github.com> Date: Sat, 21 Mar 2026 17:08:42 +0100 Subject: [PATCH] fix: update embeddings generator docs-root-path from ./pages to ./content/docs (#540) The supabase/embeddings-generator action was failing with: ENOENT: no such file or directory, scandir './pages' This repo uses content/docs/ for its mdx documentation files, not pages/. Updated the path accordingly. --- .github/workflows/generate_embeddings.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/generate_embeddings.yml b/.github/workflows/generate_embeddings.yml index cfcc848..9616e39 100644 --- a/.github/workflows/generate_embeddings.yml +++ b/.github/workflows/generate_embeddings.yml @@ -28,4 +28,4 @@ jobs: supabase-url: 'https://gnoyckdqaktttbfurtcv.supabase.co' supabase-service-role-key: ${{ secrets.SUPABASE_SERVICE_ROLE_KEY }} openai-key: ${{ secrets.OPENAI_API_KEY }} - docs-root-path: './pages' \ No newline at end of file + docs-root-path: './content/docs' \ No newline at end of file