Add set_max_statistics_size to WriterProperties (#581) #53
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: Publish Docs | |
| on: | |
| push: | |
| branches: | |
| - master | |
| permissions: | |
| actions: read | |
| pages: write | |
| id-token: write | |
| jobs: | |
| build-and-deploy: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout Repository | |
| uses: actions/checkout@v5 | |
| - name: Setup Python | |
| uses: actions/setup-python@v6 | |
| with: | |
| python-version: 3.x | |
| - name: Run Preprocessing Script | |
| run: python docs/tools/preprocess_docs.py | |
| - name: Setup .NET | |
| uses: actions/setup-dotnet@v5 | |
| with: | |
| dotnet-version: 8.x | |
| - name: Install DocFX | |
| run: dotnet tool update -g docfx | |
| - name: Build Documentation | |
| run: docfx docfx.json | |
| working-directory: ./docs | |
| - name: Upload Site Artifact | |
| uses: actions/upload-pages-artifact@v4 | |
| with: | |
| path: './docs/_site' | |
| - name: Deploy to GitHub Pages | |
| uses: actions/deploy-pages@v4 |