From ef544a05dc39ca2f4ea3e4fd464c2708761efbc0 Mon Sep 17 00:00:00 2001 From: Aptivi CEO Date: Sat, 31 Aug 2024 17:31:20 +0300 Subject: [PATCH] imp - Build project before building docs --- To ensure that the documentation stays consistent and to make sure that all the generators (if any) run, we've added a build command. --- Type: imp Breaking: False Doc Required: False Backport Required: False Part: 1/1 --- .github/workflows/docgen.yml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.github/workflows/docgen.yml b/.github/workflows/docgen.yml index 5a36795..47cbfe2 100644 --- a/.github/workflows/docgen.yml +++ b/.github/workflows/docgen.yml @@ -22,7 +22,9 @@ jobs: - name: Setup DocFX run: dotnet tool install --global docfx - name: Generating Documentation - run: make doc + run: | + make + make doc - name: Saving changes to gh-pages uses: peaceiris/actions-gh-pages@v3 with: