Merge pull request #8 from Atrox/master

add windows compatibility
This commit is contained in:
Casey Lee
2019-01-16 09:53:50 -08:00
committed by GitHub

View File

@@ -38,7 +38,7 @@ func ParseWorkflows(workingDir string, workflowPath string) (Workflows, error) {
}
workflows.WorkingDir = workingDir
workflows.WorkflowPath = workflowPath
workflows.TempDir, err = ioutil.TempDir("/tmp", "act-")
workflows.TempDir, err = ioutil.TempDir("", "act-")
if err != nil {
return nil, err
}