Files
SjkScripts/.gitea/workflows/documentme.yml
ronnie 4543048f36
Some checks failed
Generate Docs / docs (push) Failing after 59s
Build NuGet / build (push) Successful in 35s
trying a different documentation
2026-04-08 23:35:10 -04:00

33 lines
588 B
YAML

name: Generate Docs
on:
push:
branches: [ master ]
jobs:
docs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-dotnet@v4
with:
dotnet-version: 10.0.x
- name: Install DocFX
run: dotnet tool install -g docfx
- name: Build Project
run: dotnet build -c Release
- name: Generate Docs
run: |
docfx init -q
docfx docfx.json
- name: Upload Docs
uses: actions/upload-artifact@v4
with:
name: docs
path: _site