Skip to content

Commit bf43a40

Browse files
authored
Merge pull request #19 from openrails/feature/git-ssh
feat: Switch to git ssh for auth reliability
2 parents e3d9162 + 6d3e0f9 commit bf43a40

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Program.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -84,7 +84,7 @@ static async Task AsyncMain(IConfigurationRoot config)
8484

8585
Console.WriteLine("Preparing repository...");
8686
var git = new Git.Project(GetGitPath());
87-
git.Init($"https://github.com/{gitHubConfig["organization"]}/{gitHubConfig["repository"]}.git");
87+
git.Init($"git@github.com:{gitHubConfig["organization"]}/{gitHubConfig["repository"]}.git");
8888
git.Fetch();
8989
git.ResetHard();
9090
git.Clean();

0 commit comments

Comments
 (0)