Skip to content

[DX12] Fix incorrect primitive type in pipeline state #319

[DX12] Fix incorrect primitive type in pipeline state

[DX12] Fix incorrect primitive type in pipeline state #319

Workflow file for this run

name: Generate Documentation
on:
push:
branches: [master, NewDocGen]
workflow_dispatch:
jobs:
generate-docs:
runs-on: windows-latest
env:
DOTNET_VERSION: 8.0.x
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Install .NET [${{ env.DOTNET_VERSION }}]
uses: actions/setup-dotnet@v4
with:
dotnet-version: ${{ env.DOTNET_VERSION }}
#- name: Install DocFX
# run: dotnet tool install -g docfx
#- name: Install dependencies
# run: dotnet restore
# - name: DocFX Build
# working-directory: docs
# run: docfx .\docfx.json
# continue-on-error: false
- name: Publish
if: github.event_name == 'push'
uses: peaceiris/actions-gh-pages@v3
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
publish_dir: ./docs/
force_orphan: true