diff --git a/dist/index.js b/dist/index.js index a04acac..4ebc2e6 100644 --- a/dist/index.js +++ b/dist/index.js @@ -8111,6 +8111,7 @@ function downloadRepository(accessToken, owner, repo, ref, repositoryPath) { console.log(`status=${response.status}`); console.log(`headers=${JSON.stringify(response.headers)}`); console.log(`data=${JSON.stringify(typeof response.data)}`); + console.log(`data.length=${response.data.length}`); const runnerTemp = process.env['RUNNER_TEMP']; assert.ok(runnerTemp, 'RUNNER_TEMP not defined'); const archiveFile = path.join(runnerTemp, 'checkout.tar.gz'); diff --git a/src/github-api-helper.ts b/src/github-api-helper.ts index 83ada9c..33565c5 100644 --- a/src/github-api-helper.ts +++ b/src/github-api-helper.ts @@ -35,10 +35,11 @@ export async function downloadRepository( console.log(`status=${response.status}`) console.log(`headers=${JSON.stringify(response.headers)}`) console.log(`data=${JSON.stringify(typeof response.data)}`) + console.log(`data.length=${(response.data as Buffer).length}`) const runnerTemp = process.env['RUNNER_TEMP'] as string assert.ok(runnerTemp, 'RUNNER_TEMP not defined') const archiveFile = path.join(runnerTemp, 'checkout.tar.gz') - await fs.promises.writeFile(archiveFile, response.data) + await fs.promises.writeFile(archiveFile, response.data as Buffer) await exec.exec(`ls -la "${archiveFile}"`, [], { cwd: repositoryPath } as ExecOptions)