This repository was archived by the owner on Aug 7, 2026. It is now read-only.
feat: add ClientOptions.SerializeEnumsAsStrings to opt into string en… #220
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 and Deploy Documentation | |
| on: | |
| push: | |
| branches: | |
| - master | |
| - release/* # Default release branch | |
| jobs: | |
| docs: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v3 | |
| with: | |
| persist-credentials: false | |
| - name: Setup .NET | |
| uses: actions/setup-dotnet@v3 | |
| with: | |
| dotnet-version: 8.x | |
| - name: Install docfx | |
| run: dotnet tool update -g docfx | |
| - name: Build documentation | |
| run: docfx .documentation/docfx.json | |
| - name: Deploy 🚀 | |
| uses: JamesIves/github-pages-deploy-action@v4 | |
| with: | |
| folder: .documentation/_site | |
| token: ${{ secrets.GITHUB_TOKEN }} |