Skip to content

Commit

Permalink
Modified build steps to also upload new built .dlls
Browse files Browse the repository at this point in the history
  • Loading branch information
vchelaru committed Mar 28, 2024
1 parent 70898b7 commit 94d6432
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 6 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ namespace BuildServerUploaderConsole.Processes
public enum UploadType
{
Entire,
TemplatesOnly
EngineAndTemplatesOnly
}

#endregion
Expand Down Expand Up @@ -129,8 +129,8 @@ public override void ExecuteStep()
{
UploadGumFiles();
UploadFrbdkFiles();
UploadEngineFiles();
}
UploadEngineFiles();
UploadTemplateFiles(_ftpFolder, Results);
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -80,15 +80,12 @@ private static void CreateZipAndUploadTemplates(string[] args)
{
ProcessSteps.Add(new ZipTemplates(Results));

string username = null;
string password = null;

if(args.Length < 3)
{
throw new Exception("Expected 3 arguments: {operation} {username} {password}, but only got " + args.Length + "arguments");
}

ProcessSteps.Add(new UploadFilesToFrbServer(Results, UploadType.TemplatesOnly, args[1], args[2]));
ProcessSteps.Add(new UploadFilesToFrbServer(Results, UploadType.EngineAndTemplatesOnly, args[1], args[2]));


}
Expand Down

0 comments on commit 94d6432

Please sign in to comment.