This repository was archived by the owner on Aug 5, 2026. It is now read-only.
Bump ruff from 0.15.13 to 0.15.14 #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 Documentation | |
| permissions: | |
| pages: write | |
| id-token: write | |
| on: | |
| pull_request: | |
| branches: [ main ] | |
| workflow_call: | |
| inputs: &build-docs-inputs | |
| deploy: | |
| type: boolean | |
| required: false | |
| default: false | |
| workflow_dispatch: | |
| inputs: *build-docs-inputs | |
| concurrency: | |
| group: docs-build | |
| jobs: | |
| build: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v6 | |
| - name: Setup uv | |
| uses: astral-sh/setup-uv@v7 | |
| - name: Build Documentation | |
| run: uv run --no-dev --group docs zensical build --clean --strict | |
| - name: Set Artifact Name | |
| id: artifact-name | |
| run: | | |
| echo "artifact_name=${{ github.run_id }}[${{ github.run_attempt }}]--docs-artifacts" \ | |
| | tee -a $GITHUB_OUTPUT | |
| - name: Upload Pages Artifacts | |
| uses: actions/upload-pages-artifact@v5 | |
| with: | |
| name: ${{ steps.artifact-name.outputs.artifact_name }} | |
| path: site/ | |
| - name: Deploy to GitHub Pages | |
| if: ${{ inputs.deploy }} | |
| uses: actions/deploy-pages@v5 | |
| with: | |
| artifact_name: ${{ steps.artifact-name.outputs.artifact_name }} |