From fa388f7dc65c1739864d7a885d6d28111ce07775 Mon Sep 17 00:00:00 2001 From: Lance Ball Date: Tue, 11 Jul 2023 09:57:57 -0700 Subject: [PATCH] chore: add `npm run build:schema` to the doc generation action (#557) 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()