Create build-docfx.yml

This commit is contained in:
Zoldorf
2022-03-21 17:22:46 -06:00
committed by GitHub
parent be035ab002
commit d99d25de37

35
.github/workflows/build-docfx.yml vendored Normal file
View File

@@ -0,0 +1,35 @@
name: Build & Publish DocFX
on:
push:
branches: [ master ]
jobs:
docfx:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
with:
submodules: true
- name: Setup .NET Core
uses: actions/setup-dotnet@v1
with:
dotnet-version: 6.0.x
- name: Install dependencies
run: dotnet restore
- name: Build Project
run: dotnet build --no-restore /p:WarningsAsErrors=nullable
- name: Build DocFX
uses: nikeee/docfx-action@v1.0.0
with:
args: Robust.Docfx/docfx.json
- name: Publish Docfx Documentation on GitHub Pages
uses: maxheld83/ghpages@master
env:
BUILD_DIR: Robust.Docfx/_robust-site
GH_PAT: ${{ secrets.GH_PAT }}