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 be54073 commit b34cefcCopy full SHA for b34cefc
.github/workflows/docs.yml
@@ -24,11 +24,6 @@ jobs:
24
steps:
25
- uses: actions/checkout@v2
26
27
- - name: Setup .NET 5.0
28
- uses: actions/setup-dotnet@v1
29
- with:
30
- dotnet-version: 5.0.x
31
-
32
- name: Setup .NET 6.0
33
uses: actions/setup-dotnet@v1
34
with:
@@ -39,12 +34,17 @@ jobs:
39
40
35
args: install docfx
41
36
42
- - name: DocFX Build
37
+ - name: Generate DocFX metadata
38
+ working-directory: docs
+ run: docfx metadata .\docfx.json
+ continue-on-error: false
+
+ - name: Build DocFX site
43
working-directory: docs
44
run: docfx .\docfx.json
45
continue-on-error: false
46
47
- - name: Publish
+ - name: Publish DocFX site
48
if: github.event_name == 'push'
49
uses: peaceiris/actions-gh-pages@v3
50
0 commit comments