From bf236710b888f950a4153fca0e979dad20c59b72 Mon Sep 17 00:00:00 2001 From: Lance Ball Date: Tue, 11 Jul 2023 12:24:03 -0400 Subject: [PATCH] chore: add `npm run build:schema` to the doc generation action The github action that generates the documentation fails currently due to the fact that it's expecting the generated schema to exist, but it does not exist unless it's explicitly built. This commit adds `npm run build:schema` to the workflow action. Signed-off-by: Lance Ball --- .github/workflows/api-docs.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/api-docs.yaml b/.github/workflows/api-docs.yaml index e0b2d76..c5f38fd 100644 --- a/.github/workflows/api-docs.yaml +++ b/.github/workflows/api-docs.yaml @@ -11,7 +11,7 @@ jobs: uses: actions/checkout@v2 - name: Generate API documentation - run: npm install && npm run generate-docs + run: npm install && npm run build:schema && npm run generate-docs - name: Deploy to GitHub Pages if: success()