Skip to content
This repository has been archived by the owner on Sep 21, 2023. It is now read-only.

v1.7.3

v1.7.3 #20

Workflow file for this run

name: Docs
on:
workflow_dispatch: # Allow running the workflow manually from the GitHub UI
push:
branches: [ "**" ]
pull_request:
branches: [ "**" ]
jobs:
publish-docs:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Dotnet Setup
uses: actions/setup-dotnet@v3
- run: dotnet tool update -g docfx
- run: docfx docfx_project/docfx.json
- name: Deploy
uses: peaceiris/actions-gh-pages@v3
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
publish_dir: docfx_project/_site