Skip to content

Fix ProcTypeAPI NuGet package having a reference to not existing pack… #3

Fix ProcTypeAPI NuGet package having a reference to not existing pack…

Fix ProcTypeAPI NuGet package having a reference to not existing pack… #3

Workflow file for this run

name: C# API XML Documentation To Github Pages
on:
push:
branches:
- master
workflow_dispatch:
jobs:
publish-docs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Setup dotnet
uses: actions/setup-dotnet@v4
with:
dotnet-version: 8.0.x
- name: Build
run: dotnet build -c Release
- name: Build Documentation
uses: nunit/docfx-action@v3.4.2
with:
args: docs/docfx.json
- name: Deploy
uses: peaceiris/actions-gh-pages@v3
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
publish_dir: docs/_site