Skip to content
This repository has been archived by the owner on Oct 2, 2024. It is now read-only.

ci(github): Test website generation #1

ci(github): Test website generation

ci(github): Test website generation #1

Workflow file for this run

name: Website
on: push
#on:
# push:
# branches:
# - main
jobs:
mkdocs:
name: Generate the MkDocs website
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v2
- uses: actions/setup-python@v5
with:
python-version: 3.x
- run: pip install mkdocs-material
- run: |
pushd docs/website
mkdocs build --site-dir ../../docs-website
popd
ls
- uses: actions/upload-pages-artifact@v3
with:
path: docs-website