This commit is contained in:
TingluoHuang
2020-03-06 21:28:10 -05:00
parent 94e7560ccd
commit de07637563
14 changed files with 407 additions and 21 deletions

View File

@@ -82,6 +82,10 @@ namespace GitHub.Runner.Worker.Handlers
container.ContainerEntryPoint = Inputs.GetValueOrDefault("entryPoint");
}
}
else if (stage == ActionRunStage.Pre)
{
container.ContainerEntryPoint = Data.Init;
}
else if (stage == ActionRunStage.Post)
{
container.ContainerEntryPoint = Data.Cleanup;