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 ecc73f9 commit 853c44bCopy full SHA for 853c44b
.github/workflows/build-and-deploy.yml
@@ -12,19 +12,19 @@ jobs:
12
runs-on: ubuntu-latest
13
14
steps:
15
- - uses: actions/checkout@v2
+ - uses: actions/setup-dotnet@v4
16
17
- name: Setup .NET Core
18
uses: actions/setup-dotnet@v1
19
with:
20
- dotnet-version: 6.0.x
+ dotnet-version: 7.0.x
21
22
- name: Setup DocFX
23
run: |
24
- dotnet tool update -g docfx
+ dotnet tool update -g docfx --version 2.60.2
25
26
- name: Build with DocFX
27
- run: docfx docfx.json
+ run: docfx ./docfx.json
28
29
- name: Deploy to GitHub Pages
30
if: github.event_name == 'push'
0 commit comments