We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent aabb478 commit a4c1729Copy full SHA for a4c1729
1 file changed
.github/workflows/build.yml
@@ -15,6 +15,11 @@ jobs:
15
with:
16
submodules: recursive
17
18
+ - name: Setup .NET Core SDK
19
+ uses: actions/setup-dotnet@v3.2.0
20
+ with:
21
+ dotnet-version: 7.x
22
+
23
- name: Custom Build Steps
24
run: .\build.ps1
25
@@ -25,12 +30,10 @@ jobs:
30
run: msbuild -t:restore src\harp\Bonsai.Harp.sln
26
31
27
32
- name: Setup DocFX
28
- uses: crazy-max/ghaction-chocolatey@v1
29
- with:
- args: install docfx
33
+ run: dotnet tool restore
34
35
- name: Build Documentation
- run: docfx docfx.json
36
+ run: dotnet docfx docfx.json
37
38
- name: Checkout gh-pages
39
uses: actions/checkout@v2
0 commit comments