Add CONFLICT and REQUEST_TIMEOUT handler error types (#11) #7
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: Deploy Docs | ||
| on: | ||
| push: | ||
| branches: | ||
| - main | ||
| jobs: | ||
| deploy-docs: | ||
| runs-on: ubuntu-latest | ||
| needs: build-lint-test | ||
| permissions: | ||
| contents: read | ||
| pages: write | ||
| id-token: write | ||
| steps: | ||
| - name: Checkout repository | ||
| uses: actions/checkout@v4 | ||
| - name: Setup .NET | ||
| uses: actions/setup-dotnet@v4 | ||
| - name: Build docs | ||
| run: | | ||
| dotnet tool update -g docfx | ||
| docfx src/NexusRpc/docs/docfx.json --warningsAsErrors | ||
| - name: Upload docs to GitHub Pages | ||
| uses: actions/upload-pages-artifact@v3 | ||
| with: | ||
| path: src/NexusRpc/docs/_site | ||
| - name: Deploy to GitHub Pages | ||
| uses: actions/deploy-pages@v4 | ||