Skip to content

v1.2.0

v1.2.0 #4

Workflow file for this run

name: Build & Publish Docs
on:
release:
types: [ created ]
workflow_dispatch:
jobs:
publish_docs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Install .NET SDK
uses: actions/setup-dotnet@v3
with:
dotnet-version: 7.x.x
- name: Install docfx
run: dotnet tool update -g docfx
- name: Generate docs
run: docfx docs/docfx.json
- name: Deploy docs
uses: peaceiris/actions-gh-pages@v3
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
publish_dir: docs/_site