Fix the thermostat suggestions tests (#42568) #90
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: Documentation Build | |
| on: | |
| pull_request: | |
| types: [opened, synchronize, reopened] | |
| branches: | |
| - master | |
| paths: | |
| - '.github/workflows/docbuild.yaml' | |
| - '**.md' | |
| - 'docs/**' | |
| push: | |
| branches: | |
| - master | |
| permissions: | |
| contents: write | |
| jobs: | |
| build-and-publish: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout the code | |
| uses: actions/checkout@v6 | |
| with: | |
| path: matter | |
| fetch-depth: 0 | |
| - name: Install Python | |
| uses: actions/setup-python@v6 | |
| with: | |
| python-version: 3.12 | |
| cache-dependency-path: matter/docs/requirements.txt | |
| cache: pip | |
| - name: Install base dependencies | |
| working-directory: matter | |
| run: | | |
| python3 -m venv venv | |
| venv/bin/pip3 install -r docs/requirements.txt | |
| # --- Build HTML --- | |
| - name: Build documentation | |
| working-directory: matter/docs | |
| run: | | |
| source ../venv/bin/activate | |
| make html | |
| touch _build/html/.nojekyll | |
| - name: Deploy to gh-pages | |
| if: github.repository == 'project-chip/connectedhomeip' && github.event_name == 'push' && github.ref_name == 'master' | |
| uses: peaceiris/actions-gh-pages@v4 | |
| with: | |
| deploy_key: ${{ secrets.DOXYGEN_DEPLOY_KEY }} | |
| external_repository: project-chip/connectedhomeip-doc | |
| publish_dir: matter/docs/_build/html | |
| # Keep only the latest version of the documentation | |
| force_orphan: true |