Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 0 additions & 4 deletions .github/workflows/update-documentation.yml
Original file line number Diff line number Diff line change
Expand Up @@ -140,10 +140,6 @@ jobs:
run: |
git config --local user.email "[email protected]"
git config --local user.name "Selenium CI Bot"
- name: Install specific version of DocFX tool
# Pinning to 2.75.3 to avoid breaking changes in newer versions
# See https://github.com/dotnet/docfx/issues/9855
run: dotnet tool install --global --version 2.75.3 docfx
- name: Update Documentation
if: needs.determine-language.outputs.language == 'all' || needs.determine-language.outputs.language == 'dotnet'
run: ./go dotnet:docs
Expand Down
5 changes: 2 additions & 3 deletions Rakefile
Original file line number Diff line number Diff line change
Expand Up @@ -777,10 +777,9 @@ namespace :dotnet do
task :docs, [:skip_update] do |_task, arguments|
FileUtils.rm_rf('build/docs/api/dotnet/')
begin
# Pinning to 2.75.3 to avoid breaking changes in newer versions
# See https://github.com/dotnet/docfx/issues/9855
# Pinning to 2.78.2 to avoid breaking changes in newer versions
sh 'dotnet tool uninstall --global docfx || true'
sh 'dotnet tool install --global --version 2.75.3 docfx'
sh 'dotnet tool install --global --version 2.78.2 docfx'
# sh 'dotnet tool update -g docfx'
rescue StandardError
puts 'Please ensure that .NET SDK is installed.'
Expand Down
5 changes: 2 additions & 3 deletions dotnet/docs/docfx.json
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
],
"dest": "webdriver",
"namespaceLayout": "nested",
"outputFormat": "apiPage"
//"outputFormat": "apiPage" // "apiPage" generation with errors
},
{
"src": [
Expand All @@ -24,9 +24,8 @@
],
"dest": "support",
"namespaceLayout": "nested",
"outputFormat": "apiPage"
//"outputFormat": "apiPage" // "apiPage" generation with errors
}

],
"build": {
"content": [
Expand Down
Loading