Skip to content

Update demo style to match theme #3

Update demo style to match theme

Update demo style to match theme #3

Workflow file for this run

# Builds and deploys docs to GitHub Pages
name: Publish Docs
on:
push:
paths:
- "docs/**"
- "mkdocs.yml"
branches:
- main
workflow_dispatch:
permissions:
contents: read
pages: write
id-token: write
# Allow only one concurrent deployment, skipping runs queued between the run
# in-progress and latest queued. However, do NOT cancel in-progress runs in order
# to allow these production deployments to complete.
concurrency:
group: "pages"
cancel-in-progress: false
env:
site-dir: site
jobs:
# Build docs with MkDocs
build:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Set up Pages
uses: actions/configure-pages@v3
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: "3.10"
- name: Install dependencies
run: |
pip install --upgrade pip
pip install --upgrade mkdocs-walt
- name: Build with MkDocs
run: mkdocs build -d ${{ env.site-dir }} --verbose --clean --strict
- name: Upload artifact
uses: actions/upload-pages-artifact@v1
with:
path: ${{ env.site-dir }}
# Deployment to GitHub Pages
deploy:
environment:
name: github-pages
url: ${{ steps.deployment.outputs.page_url }}
runs-on: ubuntu-latest
needs: build
steps:
- name: Deploy to GitHub Pages
id: deployment
uses: actions/deploy-pages@v2