Skip to content

Commit

Permalink
fix docfx
Browse files Browse the repository at this point in the history
  • Loading branch information
lucasteles committed Mar 20, 2024
1 parent 64c6ff9 commit 138c661
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@ jobs:
uses: DeathSy/[email protected]
with:
directory: ./
badge: ./_site/lines_badge.svg
badge: ./docfx/_site/lines_badge.svg
patterns: "**/*.fs|**/*.fsx|**/*.cs|**/*.ts|**/*.js"
ignore: "node_modules"

Expand All @@ -77,6 +77,6 @@ jobs:
uses: peaceiris/actions-gh-pages@v3
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
publish_dir: ./_site
publish_dir: ./docfx/_site
publish_branch: site
force_orphan: true
2 changes: 1 addition & 1 deletion build/Build.cs
Original file line number Diff line number Diff line change
Expand Up @@ -117,7 +117,7 @@ class MainBuild : NukeBuild
.Requires(() => CoverageFiles.GlobFiles().Any())
.Executes(() =>
{
var output = RootDirectory / "_site";
var output = RootDirectory / "docfx" / "_site";
if (!output.DirectoryExists()) output.CreateDirectory();
Badges.ForCoverage(Solution, output, CoverageFiles);
Badges.ForDotNetVersion(output, GlobalJson);
Expand Down

0 comments on commit 138c661

Please sign in to comment.