refactor(ai-agent): replace pip install workaround with nix package rtk #140
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 | |
| on: | |
| push: | |
| branches: [master] | |
| concurrency: | |
| cancel-in-progress: true | |
| group: pages | |
| defaults: | |
| run: | |
| shell: bash | |
| jobs: | |
| docs: | |
| runs-on: self-hosted | |
| name: Documentation | |
| permissions: | |
| contents: read | |
| id-token: write | |
| pages: write | |
| environment: | |
| name: github-pages | |
| url: ${{ steps.deploy.outputs.page_url }} | |
| steps: | |
| - uses: actions/checkout@v6 | |
| - name: Build Documentation | |
| run: nix build .#docs | |
| - name: Upload Pages Artifact | |
| uses: actions/upload-pages-artifact@v5 | |
| with: | |
| path: result | |
| - name: Deploy Pages | |
| id: deploy | |
| uses: actions/deploy-pages@v5 |