Skip to content

Commit

Permalink
Create build-docfx.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
ZoldorfTheWizard authored Mar 21, 2022
1 parent 5ecea90 commit 693669d
Showing 1 changed file with 51 additions and 0 deletions.
51 changes: 51 additions & 0 deletions .github/workflows/build-docfx.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,51 @@
name: Build & Publish Docfx

on:
push:
branches: [ master ]
paths:
- '**.cs'
- '**.csproj'
- '**.sln'
- '**.git**'
- '**.yml'
# no docs on which one of these is supposed to work, so
# why not just do both
- 'RobustToolbox'
- 'RobustToolbox/**'

jobs:
docfx:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Setup submodule
run: |
git submodule update --init --recursive
- name: Pull engine updates
uses: space-wizards/[email protected]
- name: Update Engine Submodules
run: |
cd RobustToolbox/
git submodule update --init --recursive
- 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/[email protected]
with:
args: Content.Docfx/docfx.json

- name: Publish Docfx Documentation on GitHub Pages
uses: maxheld83/ghpages@master
env:
BUILD_DIR: Content.Docfx/_content-site
GH_PAT: ${{ secrets.GH_PAT }}

0 comments on commit 693669d

Please sign in to comment.