Fix PostData type in protocol (#2810) #59
Workflow file for this run
This file contains 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: | |
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@v3 | |
- 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@v3 | |
- name: Upload artifact | |
uses: actions/upload-pages-artifact@v2 | |
with: | |
path: 'docs' | |
- name: Publish Documentation on GitHub Pages | |
uses: actions/deploy-pages@v2 | |
id: deployment | |
- name: Upload Site to artifact | |
uses: actions/upload-artifact@v3 | |
with: | |
name: 'Website' | |
path: docs/ | |
retention-days: 1 | |
if-no-files-found: ignore | |
if: always() | |
continue-on-error: true |