2020-04-26 14:27:16 +01:00
|
|
|
name: DocFX
|
|
|
|
|
|
|
|
on:
|
|
|
|
push:
|
2022-04-30 17:01:01 +01:00
|
|
|
branches: [ main ]
|
2020-04-26 14:27:16 +01:00
|
|
|
|
|
|
|
jobs:
|
2022-05-12 14:26:10 +01:00
|
|
|
docfx:
|
2020-04-26 14:27:16 +01:00
|
|
|
runs-on: ubuntu-latest
|
2022-05-12 14:26:10 +01:00
|
|
|
name: Publish Documentation
|
2020-04-26 14:27:16 +01:00
|
|
|
steps:
|
2022-05-12 14:26:10 +01:00
|
|
|
- uses: actions/checkout@v1
|
|
|
|
- uses: nikeee/docfx-action@v1.0.0
|
|
|
|
name: Build Documentation
|
2020-04-26 14:27:16 +01:00
|
|
|
with:
|
2022-05-12 14:26:10 +01:00
|
|
|
args: docfx_project/docfx.json
|
|
|
|
- uses: maxheld83/ghpages@master
|
|
|
|
name: Publish Documentation on GitHub Pages
|
|
|
|
env:
|
|
|
|
BUILD_DIR: _site
|
|
|
|
GH_PAT: ${{ secrets.GH_PAT }}
|