Update README.md #86
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
jobs: | |
generate_and_publish_docs: | |
runs-on: ubuntu-latest | |
name: Generate and publish the docs | |
steps: | |
- uses: actions/checkout@v1 | |
name: Checkout code | |
- uses: nunit/[email protected] | |
name: Build Documentation | |
with: | |
args: Docs/docfx.json --debug | |
- uses: maxheld83/ghpages@master | |
name: Publish Documentation on GitHub Pages | |
env: | |
BUILD_DIR: Docs/_site # docfx's default output directory is _site | |
GH_PAT: ${{ secrets.GH_PAT }} # See https://github.com/maxheld83/ghpages | |
name: DocFx Clone, Build And Push | |
on: | |
push: | |
branches: | |
- stable |