fix: #170 add RUNNER_TEMP

This commit is contained in:
Casey Lee
2020-04-23 08:18:36 -07:00
parent a9533b05ce
commit a48cce3a78
2 changed files with 2 additions and 2 deletions

View File

@@ -79,6 +79,7 @@ func (rc *RunContext) startJobContainer() common.Executor {
envList = append(envList, fmt.Sprintf("%s=%s", "RUNNER_TOOL_CACHE", "/opt/hostedtoolcache"))
envList = append(envList, fmt.Sprintf("%s=%s", "RUNNER_OS", "Linux"))
envList = append(envList, fmt.Sprintf("%s=%s", "RUNNER_TEMP", "/tmp"))
binds := []string{
fmt.Sprintf("%s:%s", "/var/run/docker.sock", "/var/run/docker.sock"),