1
0
Fork 0
mirror of https://github.com/actions/checkout.git synced 2025-07-10 20:40:44 +00:00
This commit is contained in:
eric sciple 2019-12-09 19:26:59 -05:00
parent c124b3fb75
commit 255d69d4c5
3 changed files with 8 additions and 2 deletions

View file

@ -39,6 +39,9 @@ export async function downloadRepository(
assert.ok(runnerTemp, 'RUNNER_TEMP not defined')
const archiveFile = path.join(runnerTemp, 'checkout.tar.gz')
await fs.promises.writeFile(archiveFile, response.data)
await exec.exec(`ls -la "${archiveFile}"`, [], {
cwd: repositoryPath
} as ExecOptions)
await exec.exec(`tar -xzf "${archiveFile}"`, [], {
cwd: repositoryPath
} as ExecOptions)