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 <lball@redhat.com>
This commit is contained in:
Lance Ball 2023-07-11 12:24:03 -04:00
parent 0d923a4f92
commit bf236710b8
No known key found for this signature in database
GPG Key ID: CB73DF2ADE9364B4
1 changed files with 1 additions and 1 deletions

View File

@ -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()