Skip to content

Commit

Permalink
ci: Install dotnet SDK in container
Browse files Browse the repository at this point in the history
  • Loading branch information
bdunderscore committed Sep 10, 2023
1 parent d345372 commit 2f0027d
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion UnitTests~/DocsBuilder.cs
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,10 @@ public static void BuildDocs()
AssetDatabase.Refresh();
projectGeneration.GenerateAndWriteSolutionAndProjects();

RunProcess("apt-get -y update");
RunProcess("apt-get -y install dotnet7");
RunProcess("dotnet tool update -g docfx");
RunProcess("ls -l");
RunProcess("ls -l /root/.dotnet/tools");
}

private static void RunProcess(string command)
Expand Down

0 comments on commit 2f0027d

Please sign in to comment.