diff options
Diffstat (limited to '.github/workflows/gen.yml')
-rw-r--r-- | .github/workflows/gen.yml | 9 |
1 files changed, 7 insertions, 2 deletions
diff --git a/.github/workflows/gen.yml b/.github/workflows/gen.yml index d84469b..202af05 100644 --- a/.github/workflows/gen.yml +++ b/.github/workflows/gen.yml @@ -18,11 +18,16 @@ jobs: build: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 + - uses: actions/setup-python@v4 - name: Setup Pages id: pages uses: actions/configure-pages@v3 - - name: Generate files + - name: Install dependencies + run: pip3 install mkdocs-terminal + - name: Generate wiki + run: cd docs/ && mkdocs build + - name: Generate std run: cd docs/ && ./gen.sh - name: Upload artifact uses: actions/upload-pages-artifact@v1 |