| 1 | name: Squad Docs — Build & Deploy |
| 2 | # python project — configure documentation build commands below |
| 3 | |
| 4 | on: |
| 5 | workflow_dispatch: |
| 6 | push: |
| 7 | branches: [preview] |
| 8 | paths: |
| 9 | - 'docs/**' |
| 10 | - '.github/workflows/squad-docs.yml' |
| 11 | |
| 12 | permissions: |
| 13 | contents: read |
| 14 | pages: write |
| 15 | id-token: write |
| 16 | |
| 17 | jobs: |
| 18 | build: |
| 19 | runs-on: ubuntu-latest |
| 20 | steps: |
| 21 | - uses: actions/checkout@df4cb1c069e1874edd31b4311f1884172cec0e10 # v6.0.3 |
| 22 | |
| 23 | - name: Build docs |
| 24 | run: | |
| 25 | # TODO: Add your documentation build commands here |
| 26 | # This workflow is optional — remove or customize it for your project |
| 27 | echo "No docs build commands configured — update or remove squad-docs.yml" |