1
0
Fork 0
mirror of https://code.forgejo.org/forgejo/runner.git synced 2025-09-15 18:57:01 +00:00

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
commit 4249f78120

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
}