Skip to content

Commit

Permalink
Fix DocFX not rendering the API (#63)
Browse files Browse the repository at this point in the history
We face the issue from dotnet/docfx#8097.
We fix it by downgrading to windows-2019 image in the CI, since that
image contains VisualStudio 2019, where the issue does not arise.
  • Loading branch information
mristin authored Sep 8, 2022
1 parent bf90e94 commit ae6bb8c
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 2 deletions.
6 changes: 5 additions & 1 deletion .github/workflows/doc.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,10 +4,14 @@ on:
push:
branches:
- main
- mristin/Fix-docfx-not-rendering-API

jobs:
Generate-doc:
runs-on: windows-latest
# We need to use windows-2019 due to the bug in MSBuild in VS Studio 17.3.3
# which is shipped with GitHub's windows-latest image.
# See: https://github.com/dotnet/docfx/issues/8097
runs-on: windows-2019
steps:
- uses: actions/checkout@master

Expand Down
2 changes: 1 addition & 1 deletion .idea/workspace.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

0 comments on commit ae6bb8c

Please sign in to comment.