Fix PrependPath format to be array instead of a concatenated string (#1948)

* Fix prependPath format
This commit is contained in:
Ferenc Hammerl
2022-06-22 15:11:17 +02:00
committed by GitHub
parent 9499f477a2
commit 416771d4b1
2 changed files with 2 additions and 2 deletions

View File

@@ -44,7 +44,7 @@ namespace GitHub.Runner.Worker.Container.ContainerHooks
public IEnumerable<string> EntryPointArgs { get; set; }
public string EntryPoint { get; set; }
public IDictionary<string, string> EnvironmentVariables { get; set; }
public string PrependPath { get; set; }
public IEnumerable<string> PrependPath { get; set; }
public string WorkingDirectory { get; set; }
public bool IsRequireAlpineInResponse() => false;
}