We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 05d25ac commit bac970cCopy full SHA for bac970c
.github/workflows/docs.yml
@@ -30,9 +30,13 @@ jobs:
30
with:
31
dotnet-version: 9.x
32
33
- - run: dotnet tool update -g docfx
+ - name: Restore .NET tools
34
+ run: dotnet tool restore
35
+ working-directory: ./docs
36
- - run: docfx docs/docfx.json
37
+ - name: Generate documentation
38
39
+ run: dotnet docfx docfx.json
40
41
- name: Upload Pages artifact
42
uses: actions/upload-pages-artifact@v3
docs/dotnet-tools.json
@@ -0,0 +1,12 @@
1
+{
2
+ "version": 1,
3
+ "isRoot": true,
4
+ "tools": {
5
+ "docfx": {
6
+ "version": "2.78.3",
7
+ "commands": [
8
+ "docfx"
9
+ ]
10
+ }
11
12
+}
0 commit comments