fix capitalisation for internal node codegen (#131) #719
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: docs-build-deploy | |
| on: | |
| workflow_dispatch: | |
| push: | |
| branches: ["main"] | |
| pull_request: | |
| branches: ["*"] | |
| jobs: | |
| build-docs: | |
| runs-on: macos-latest | |
| permissions: write-all | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: Install the latest version of uv | |
| uses: astral-sh/setup-uv@v4 | |
| with: | |
| version: "latest" | |
| - name: Build Docs | |
| run: | | |
| uv sync --all-extras | |
| uv pip install -e . | |
| cd docs | |
| uv run quartodoc build | |
| uv run quartodoc interlinks | |
| - name: Quarto Render | |
| run: | | |
| uv run quarto render docs | |
| # Only publish to GitHub Pages when a new version tag is pushed | |
| - name: Publish to GitHub Pages | |
| if: startsWith(github.ref, 'refs/tags/v') | |
| run: | | |
| cd docs | |
| uv run quarto publish gh-pages --no-render --no-prompt --no-browser |