Fix using: node12 handling (#243)

Co-authored-by: Casey Lee <[email protected]>
This commit is contained in:
Josh Soref
2020-05-18 14:31:09 -07:00
committed by GitHub
co-authored by Casey Lee
parent 2bb9906425
commit 5c850b5ba8
+2 -1
View File
@@ -270,8 +270,9 @@ func (sc *StepContext) runAction(actionDir string, actionPath string) common.Exe
if err != nil {
return err
}
return rc.execJobContainer([]string{"node", filepath.Join(containerActionDir, actionName, actionPath, action.Runs.Main)}, sc.Env)(ctx)
}
return rc.execJobContainer([]string{"node", filepath.Join(containerActionDir, actionName, actionPath, action.Runs.Main)}, sc.Env)(ctx)
return rc.execJobContainer([]string{"node", filepath.Join(containerActionDir, actionPath, action.Runs.Main)}, sc.Env)(ctx)
case model.ActionRunsUsingDocker:
var prepImage common.Executor
var image string