mirror of
https://github.com/rommapp/grout.git
synced 2026-04-23 06:54:36 +00:00
04ef4e76cc
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.
48 lines
815 B
YAML
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
|