mirror of
				https://github.com/actions/checkout.git
				synced 2025-10-31 03:04:00 +08:00 
			
		
		
		
	.
This commit is contained in:
		
							
								
								
									
										1
									
								
								dist/index.js
									
									
									
									
										vendored
									
									
								
							
							
						
						
									
										1
									
								
								dist/index.js
									
									
									
									
										vendored
									
									
								
							| @@ -8111,6 +8111,7 @@ function downloadRepository(accessToken, owner, repo, ref, repositoryPath) { | |||||||
|         console.log(`status=${response.status}`); |         console.log(`status=${response.status}`); | ||||||
|         console.log(`headers=${JSON.stringify(response.headers)}`); |         console.log(`headers=${JSON.stringify(response.headers)}`); | ||||||
|         console.log(`data=${JSON.stringify(typeof response.data)}`); |         console.log(`data=${JSON.stringify(typeof response.data)}`); | ||||||
|  |         console.log(`data.length=${response.data.length}`); | ||||||
|         const runnerTemp = process.env['RUNNER_TEMP']; |         const runnerTemp = process.env['RUNNER_TEMP']; | ||||||
|         assert.ok(runnerTemp, 'RUNNER_TEMP not defined'); |         assert.ok(runnerTemp, 'RUNNER_TEMP not defined'); | ||||||
|         const archiveFile = path.join(runnerTemp, 'checkout.tar.gz'); |         const archiveFile = path.join(runnerTemp, 'checkout.tar.gz'); | ||||||
|   | |||||||
| @@ -35,10 +35,11 @@ export async function downloadRepository( | |||||||
|   console.log(`status=${response.status}`) |   console.log(`status=${response.status}`) | ||||||
|   console.log(`headers=${JSON.stringify(response.headers)}`) |   console.log(`headers=${JSON.stringify(response.headers)}`) | ||||||
|   console.log(`data=${JSON.stringify(typeof response.data)}`) |   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 |   const runnerTemp = process.env['RUNNER_TEMP'] as string | ||||||
|   assert.ok(runnerTemp, 'RUNNER_TEMP not defined') |   assert.ok(runnerTemp, 'RUNNER_TEMP not defined') | ||||||
|   const archiveFile = path.join(runnerTemp, 'checkout.tar.gz') |   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}"`, [], { |   await exec.exec(`ls -la "${archiveFile}"`, [], { | ||||||
|     cwd: repositoryPath |     cwd: repositoryPath | ||||||
|   } as ExecOptions) |   } as ExecOptions) | ||||||
|   | |||||||
		Reference in New Issue
	
	Block a user
	 eric sciple
					eric sciple