mirror of
https://github.com/malmeloo/FindMy.py.git
synced 2026-04-17 21:53:57 +02:00
48 lines
1004 B
YAML
48 lines
1004 B
YAML
name: Deploy documentation
|
|
|
|
on:
|
|
workflow_dispatch:
|
|
push:
|
|
tags:
|
|
- 'v[0-9]\.[0-9]+\.[0-9]+'
|
|
|
|
jobs:
|
|
deploy:
|
|
runs-on: ubuntu-latest
|
|
|
|
permissions:
|
|
pages: write
|
|
id-token: write
|
|
|
|
steps:
|
|
- uses: actions/checkout@v6
|
|
|
|
- uses: "./.github/actions/setup-project"
|
|
|
|
- name: Install graphviz
|
|
run: |
|
|
sudo tee /etc/dpkg/dpkg.cfg.d/01_nodoc > /dev/null << 'EOF'
|
|
path-exclude /usr/share/doc/*
|
|
path-exclude /usr/share/man/*
|
|
path-exclude /usr/share/info/*
|
|
EOF
|
|
|
|
sudo apt-get install -y graphviz
|
|
|
|
- name: Build documentation
|
|
run: |
|
|
cd docs
|
|
uv run make html
|
|
|
|
- name: Setup Pages
|
|
uses: actions/configure-pages@v5
|
|
|
|
- name: Upload Pages artifact
|
|
uses: actions/upload-pages-artifact@v4
|
|
with:
|
|
path: "docs/_build/html/"
|
|
|
|
- name: Deploy to GitHub Pages
|
|
id: deployment
|
|
uses: actions/deploy-pages@v4
|