[DX12] Fix incorrect primitive type in pipeline state #319
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |