Skip to content

Replace ASCII art in architecture.md with SVGs per REVIEW.md #10

Replace ASCII art in architecture.md with SVGs per REVIEW.md

Replace ASCII art in architecture.md with SVGs per REVIEW.md #10

Workflow file for this run

name: Deploy docs
on:
push:
branches: [main]
paths:
- 'docs/**'
- 'mkdocs.yml'
- 'README.md'
- 'scripts/install-online.sh'
- 'scripts/install.sh'
- '.github/workflows/docs.yml'
permissions:
contents: read
pages: write
id-token: write
concurrency:
group: pages
cancel-in-progress: true
jobs:
deploy:
runs-on: ubuntu-latest
environment:
name: github-pages
url: ${{ steps.deployment.outputs.page_url }}
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0
- uses: actions/setup-python@v5
with:
python-version: '3.x'
- run: pip install mkdocs-material mkdocs-git-revision-date-localized-plugin pillow cairosvg
- run: |
cp README.md docs/index.md
sed -i 's|docs/assets/|assets/|g' docs/index.md
mkdocs build
- name: Copy install script and assets
run: |
cp scripts/install-online.sh site/install.sh
- name: Upload Pages artifact
uses: actions/upload-pages-artifact@v3
with:
path: site
- name: Deploy to GitHub Pages
id: deployment
uses: actions/deploy-pages@v4