Skip to content

Change WebSocketTransport to protected (#2889) #66

Change WebSocketTransport to protected (#2889)

Change WebSocketTransport to protected (#2889) #66

Workflow file for this run

name: Publish docs
on:
workflow_dispatch:
push:
tags:
- '*'
permissions:
contents: read
pages: write
id-token: write
jobs:
build:
name: Publish docs
runs-on: windows-latest
env:
DOTNET_VERSION: '8.0.x' # The .NET SDK version to use
steps:
- uses: actions/checkout@v4
- name: Setup .NET Core
uses: actions/setup-dotnet@v3
with:
dotnet-version: ${{ env.DOTNET_VERSION }}
- name: Build
run: |
dotnet tool install --global docfx --version 2.74.1
docfx metadata docfx_project\docfx.json
docfx build docfx_project\docfx.json -o docs
- name: Setup Pages
uses: actions/configure-pages@v5
- name: Upload artifact
uses: actions/upload-pages-artifact@v3
with:
path: 'docs'
- name: Publish Documentation on GitHub Pages
uses: actions/deploy-pages@v4
id: deployment
- name: Upload Site to artifact
uses: actions/upload-artifact@v4
with:
name: 'Website'
path: docs/
retention-days: 1
if-no-files-found: ignore
if: always()
continue-on-error: true