Skip to content

Commit

Permalink
fixed .exe path for github actions
Browse files Browse the repository at this point in the history
  • Loading branch information
tolik518 committed Oct 22, 2023
1 parent 9c8c81f commit 52b944f
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions SoG_SGreader.Test/IntegrationTests.cs
Original file line number Diff line number Diff line change
Expand Up @@ -14,9 +14,11 @@ private static string GetExePath()
// Exception for GitHub Actions Test Runner
if (Environment.GetEnvironmentVariable("GITHUB_WORKSPACE") != null) {
projectDirectory = Environment.GetEnvironmentVariable("GITHUB_WORKSPACE");
return Path.Combine(projectDirectory, "SoG_SGreader", "bin", "Release", "SoG_SGreader.exe");
}

return Path.Combine(projectDirectory, "SoG_SGreader", "bin", "Debug", "SoG_SGreader.exe");

}

private static string GetSaveGamePath(string saveGameNumber)
Expand Down

0 comments on commit 52b944f

Please sign in to comment.