checking path #44
Workflow file for this run
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: Build docs | |
| on: | |
| push: | |
| # branches: | |
| # - main | |
| # paths: | |
| # - 'docs' | |
| jobs: | |
| build-notebooks: | |
| uses: ./.github/workflows/build-notebooks.yml | |
| secrets: inherit | |
| deploy: | |
| needs: build-notebooks | |
| runs-on: ubuntu-latest | |
| permissions: | |
| contents: write | |
| steps: | |
| - name: Checkout repository | |
| uses: actions/checkout@v2 | |
| - name: Install uv | |
| uses: astral-sh/setup-uv@v6 | |
| with: | |
| version: "0.9.5" | |
| - name: Set up Python | |
| run: uv python install | |
| - name: Install dependencies for docs | |
| run: uv sync --group docs | |
| - name: Download artifact from previous step | |
| uses: actions/download-artifact@v5 | |
| with: | |
| name: notebooks | |
| - name: Check if notebooks were downloaded | |
| run: ls -la | |
| # - name: Build and deploy docs | |
| # run: uv run mkdocs gh-deploy --force --clean --verbose |