mirror of
https://github.com/open-jarvis/OpenJarvis.git
synced 2026-07-28 05:12:26 +00:00
Ahead of the 2026-06-02 forced-Node-24 deadline, upgrade the remaining javascript actions flagged in the workflow annotations: - actions/setup-python v5 → v6 - actions/setup-node v4 → v6 (skipping v5) - actions/cache v4 → v5 - actions/deploy-pages v4 → v5 - actions/upload-pages-artifact v3 → v5.0.0 upload-pages-artifact has no rolling @v5 major tag — only the specific v5.0.0 release — so it gets an explicit pin, same as astral-sh/setup-uv. Not touched: swatinem/rust-cache@v2 (still on v2 majors, not flagged), dtolnay/rust-toolchain@stable (composite), tauri-apps/tauri-action@v0 (composite), anthropics/claude-code-action@v1 (still latest major). Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
64 lines
1.3 KiB
YAML
64 lines
1.3 KiB
YAML
name: Deploy Documentation
|
|
|
|
on:
|
|
push:
|
|
branches: [main]
|
|
paths:
|
|
- "docs/**"
|
|
- "mkdocs.yml"
|
|
- "src/openjarvis/**"
|
|
pull_request:
|
|
branches: [main]
|
|
paths:
|
|
- "docs/**"
|
|
- "mkdocs.yml"
|
|
- "src/openjarvis/**"
|
|
workflow_dispatch:
|
|
|
|
permissions:
|
|
contents: read
|
|
pages: write
|
|
id-token: write
|
|
|
|
concurrency:
|
|
group: "pages"
|
|
cancel-in-progress: false
|
|
|
|
jobs:
|
|
build:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v6
|
|
|
|
- name: Set up Python
|
|
uses: actions/setup-python@v6
|
|
with:
|
|
python-version: "3.12"
|
|
|
|
- name: Install uv
|
|
uses: astral-sh/setup-uv@v8.0.0
|
|
|
|
- name: Install dependencies
|
|
run: uv sync --extra docs
|
|
|
|
- name: Build documentation
|
|
run: uv run mkdocs build
|
|
|
|
- name: Upload artifact
|
|
if: github.ref == 'refs/heads/main' && github.event_name != 'pull_request'
|
|
uses: actions/upload-pages-artifact@v5.0.0
|
|
with:
|
|
path: site/
|
|
|
|
deploy:
|
|
if: github.ref == 'refs/heads/main' && github.event_name != 'pull_request'
|
|
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@v5
|