Skip to content

add simple demo site w/ placeholder intergration #1

add simple demo site w/ placeholder intergration

add simple demo site w/ placeholder intergration #1

Workflow file for this run

name: Deploy Demo Site
on:
push:
branches: [main]
workflow_dispatch:
permissions:
contents: write
pages: write
id-token: write
concurrency:
group: "pages"
cancel-in-progress: false
jobs:
deploy:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
with:
python-version: "3.12"
- name: Install dependencies
run: |
pip install mkdocs-material mkdocs-placeholder-plugin
pip install -e .
- name: Build site
run: mkdocs build
- name: Deploy to GitHub Pages
uses: peaceiris/actions-gh-pages@v4
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
publish_dir: ./site
cname: mkdocs-zip-bundle-plugin.daemonless.io