force cmake<4 in build on CI (#392) #221
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
| # This workflow installs mkdocs-material and itsdependencies, | |
| # builds the docs, and pushes the built site to the `gh-pages` branch | |
| # of the same repository. | |
| name: docs | |
| on: | |
| push: | |
| branches: | |
| - main | |
| jobs: | |
| deploy-docs: | |
| permissions: | |
| contents: write | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout repository | |
| uses: actions/checkout@v4 | |
| - name: Set up Python | |
| uses: actions/setup-python@v5 | |
| with: | |
| python-version: "3.10" | |
| - name: Install dependencies | |
| run: | | |
| pip install mkdocs-material | |
| # Build the docs | |
| - name: Build the docs | |
| run: | | |
| mkdocs build | |
| # Push the site to github-pages | |
| - name: GitHub Pages action | |
| uses: peaceiris/actions-gh-pages@v4 | |
| with: | |
| publish_dir: ./site | |
| github_token: ${{ secrets.GITHUB_TOKEN }} |