Skip to content

Commit ab5d8ed

Browse files
author
Jani Giannoudis
committed
fix: docfx glob pattern and remove invalid --outputFolder flag
1 parent 2ad1f9e commit ab5d8ed

2 files changed

Lines changed: 6 additions & 3 deletions

File tree

.github/workflows/pages.yml

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -56,8 +56,11 @@ jobs:
5656
- name: Install DocFX
5757
run: dotnet tool install -g docfx
5858

59+
- name: Restore NuGet packages
60+
run: dotnet restore PayrollEngine.Client.Scripting/Client.Scripting/
61+
5962
- name: Build DocFX
60-
run: cd PayrollEngine.Client.Scripting/docfx && docfx docfx.json --outputFolder _site
63+
run: cd PayrollEngine.Client.Scripting/docfx && docfx docfx.json
6164

6265
- name: Upload Pages artifact
6366
uses: actions/upload-pages-artifact@v3

docfx/docfx.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
{
44
"src": [
55
{
6-
"files": [ "/**.csproj" ],
6+
"files": [ "**.csproj" ],
77
"src": "../Client.Scripting/"
88
}
99
],
@@ -52,4 +52,4 @@
5252
"keepFileLink": false,
5353
"disableGitFeatures": false
5454
}
55-
}
55+
}

0 commit comments

Comments
 (0)