Files
grout/.github/workflows/docs.yml
Brandon T. Kowalski 04ef4e76cc docs: add MinUI install guide and opt into Node.js 24 for CI
Add install-minui.md with tested devices, installation steps, and
update instructions. Add MinUI to mkdocs nav and cfw-links. Set
FORCE_JAVASCRIPT_ACTIONS_TO_NODE24 on both workflows ahead of the
June 2026 deprecation of Node.js 20 runners.
2026-03-28 10:07:08 -04:00

48 lines
815 B
YAML

name: Deploy Docs
on:
workflow_dispatch:
push:
branches:
- main
paths:
- docs/**
- mkdocs.yml
- overrides/**
- pyproject.toml
- uv.lock
env:
FORCE_JAVASCRIPT_ACTIONS_TO_NODE24: true
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
- uses: astral-sh/setup-uv@v4
- name: Build docs
run: uv run mkdocs build
- uses: actions/upload-pages-artifact@v3
with:
path: site
- name: Deploy to GitHub Pages
id: deployment
uses: actions/deploy-pages@v4