Skip to content

Fix inconsistent handling of stateless paths in DNFLogicDef. #53

Fix inconsistent handling of stateless paths in DNFLogicDef.

Fix inconsistent handling of stateless paths in DNFLogicDef. #53

Workflow file for this run

name: Docs
on:
push:
branches: [ master, docs_source ]
jobs:
generate-docs:
runs-on: windows-2022
steps:
- name: Checkout
uses: actions/checkout@v3
with:
ref: master
- name: Checkout doc source
uses: actions/checkout@v3
with:
ref: docs_source
path: docs
# setup .NET
- name: Setup .NET
uses: actions/setup-dotnet@v3
# Install DocFX
- name: Setup DocFX
uses: crazy-max/ghaction-chocolatey@v1
with:
args: install docfx
# Build and publish docs
- name: DocFX build
working-directory: docs
run: docfx docfx.json
continue-on-error: false
- name: Publish
uses: peaceiris/actions-gh-pages@v3
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
publish_dir: docs/_site
force_orphan: true