Skip to content

fix: correct org branding and docs theme #3

fix: correct org branding and docs theme

fix: correct org branding and docs theme #3

Workflow file for this run

name: deploy-docs
on:
push:
branches:
- main
paths:
- docs/**
- README.md
- README.en.md
- mkdocs.yml
- .github/workflows/deploy-docs.yml
workflow_dispatch:
permissions:
contents: read
pages: write
id-token: write
concurrency:
group: github-pages
cancel-in-progress: true
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v5
- name: Setup Python
uses: actions/setup-python@v5
with:
python-version: "3.12"
- name: Install MkDocs
run: |
python -m pip install --upgrade pip
python -m pip install "mkdocs>=1.6,<2"
- name: Build site
run: mkdocs build --strict
- name: Configure Pages
uses: actions/configure-pages@v5
- name: Upload Pages artifact
uses: actions/upload-pages-artifact@v4
with:
path: site
deploy:
needs: build
runs-on: ubuntu-latest
environment:
name: github-pages
url: ${{ steps.deployment.outputs.page_url }}
steps:
- name: Deploy to GitHub Pages
id: deployment
uses: actions/deploy-pages@v4