docs(pi): update pi-coding-agent package name reference to @earendil-… #743
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: Deploy Documentation | |
| on: | |
| push: | |
| branches: | |
| - main | |
| - master | |
| pull_request: | |
| branches: | |
| - main | |
| - master | |
| workflow_dispatch: | |
| permissions: | |
| contents: read | |
| pages: write | |
| id-token: write | |
| concurrency: | |
| group: "pages" | |
| cancel-in-progress: true | |
| jobs: | |
| build: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v4 | |
| with: | |
| fetch-depth: 0 | |
| - name: Setup Python | |
| uses: actions/setup-python@v5 | |
| with: | |
| python-version: '3.11' | |
| - name: Install Rust toolchain | |
| if: github.event_name != 'pull_request' | |
| uses: dtolnay/rust-toolchain@stable | |
| with: | |
| components: llvm-tools-preview | |
| - name: Cache cargo | |
| if: github.event_name != 'pull_request' | |
| uses: Swatinem/rust-cache@v2 | |
| - name: Install coverage dependencies | |
| if: github.event_name != 'pull_request' | |
| run: | | |
| sudo apt-get update | |
| sudo apt-get install -y libdbus-1-dev pkg-config | |
| cargo install cargo-llvm-cov --locked | |
| - name: Build ralph binary for e2e coverage tests | |
| if: github.event_name != 'pull_request' | |
| run: | | |
| cargo build -p ralph-cli --bin ralph | |
| echo "$GITHUB_WORKSPACE/target/debug" >> "$GITHUB_PATH" | |
| - name: Install dependencies | |
| run: | | |
| pip install --upgrade pip | |
| pip install mkdocs mkdocs-material mkdocs-material-extensions pymdown-extensions mkdocs-minify-plugin mkdocs-llmstxt==0.5.0 | |
| - name: Generate coverage summary | |
| if: github.event_name != 'pull_request' | |
| run: | | |
| mkdir -p coverage | |
| cargo llvm-cov --all-features --workspace --json --summary-only --output-path coverage/summary.json | |
| - name: Build documentation | |
| run: mkdocs build --strict --verbose | |
| - name: Write coverage badge payload | |
| if: github.event_name != 'pull_request' | |
| run: python3 scripts/update_coverage_badge.py --summary coverage/summary.json --badge-json site/badges/coverage.json | |
| - name: Validate llms.txt structure | |
| run: python scripts/validate_llms_txt.py site/llms.txt | |
| - name: Upload artifact | |
| uses: actions/upload-pages-artifact@v3 | |
| with: | |
| path: ./site | |
| deploy: | |
| if: github.event_name != 'pull_request' | |
| environment: | |
| name: github-pages | |
| url: ${{ steps.deployment.outputs.page_url }} | |
| runs-on: ubuntu-latest | |
| needs: build | |
| steps: | |
| - name: Deploy to GitHub Pages | |
| id: deployment | |
| uses: actions/deploy-pages@v4 | |
| with: | |
| timeout: 1200000 # 20 minutes |