Skip to content

Add another demo for low-depth data to the Doc webapp. #17

Add another demo for low-depth data to the Doc webapp.

Add another demo for low-depth data to the Doc webapp. #17

Workflow file for this run

name: Deploy MkDocs site to GitHub Pages
on:
push:
branches: [main,dev]
permissions:
contents: write
pages: write
id-token: write
jobs:
deploy:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
with:
python-version: '3.12'
- run: echo "cache_id=$(date --utc '+%V')" >> $GITHUB_ENV
- uses: peaceiris/actions-gh-pages@v3
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
publish_dir: ./site
- uses: actions/cache@v4
with:
key: mkdocs-material-${{ env.cache_id }}
path: .cache
restore-keys: |
mkdocs-material-
- run: pip install mkdocs mkdocs-material mkdocs-include-markdown-plugin
- run: mkdocs gh-deploy --force