build(deps-dev): bump cspell in the development group #128
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
| --- | |
| concurrency: | |
| cancel-in-progress: false | |
| group: pages | |
| jobs: | |
| pages: | |
| environment: | |
| name: github-pages | |
| url: ${{ steps.deployment.outputs.page_url }} | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v6 | |
| with: | |
| fetch-depth: 0 | |
| - name: Setup Pages | |
| uses: actions/configure-pages@v6 | |
| - name: Install dependencies | |
| run: | | |
| sudo apt-get update | |
| sudo apt-get install -y doxygen graphviz | |
| - name: Configure | |
| run: >- | |
| cmake -DCMAKE_BUILD_TYPE=Release -B ${{github.workspace}}/build | |
| --install-prefix ${{github.workspace}}/build/prefix | |
| -DBUILD_DOCS_ONLY=ON | |
| - name: Build documentation | |
| run: cmake --build ${{github.workspace}}/build --verbose --config Release --target docs | |
| - name: Upload artifact | |
| uses: actions/upload-pages-artifact@v5 | |
| with: | |
| path: ${{github.workspace}}/build/docs/html | |
| - id: deployment | |
| name: Deploy to GitHub Pages | |
| uses: actions/deploy-pages@v5 | |
| name: GitHub Pages | |
| 'on': | |
| push: | |
| branches: [master] | |
| permissions: | |
| contents: read | |
| id-token: write | |
| pages: write |