Compare commits
No commits in common. "users/cory-miller/windows-test" and "main" have entirely different histories.
users/cory
...
main
4
dist/index.js
vendored
4
dist/index.js
vendored
@ -1574,9 +1574,7 @@ function downloadRepository(authToken, owner, repo, ref, commit, repositoryPath,
|
|||||||
// Write archive to disk
|
// Write archive to disk
|
||||||
core.info('Writing archive to disk');
|
core.info('Writing archive to disk');
|
||||||
const uniqueId = (0, uuid_1.v4)();
|
const uniqueId = (0, uuid_1.v4)();
|
||||||
const archivePath = IS_WINDOWS
|
const archivePath = path.join(repositoryPath, `${uniqueId}.tar.gz`);
|
||||||
? path.join(repositoryPath, `${uniqueId}.zip`)
|
|
||||||
: path.join(repositoryPath, `${uniqueId}.tar.gz`);
|
|
||||||
yield fs.promises.writeFile(archivePath, archiveData);
|
yield fs.promises.writeFile(archivePath, archiveData);
|
||||||
archiveData = Buffer.from(''); // Free memory
|
archiveData = Buffer.from(''); // Free memory
|
||||||
// Extract archive
|
// Extract archive
|
||||||
|
@ -35,9 +35,7 @@ export async function downloadRepository(
|
|||||||
// Write archive to disk
|
// Write archive to disk
|
||||||
core.info('Writing archive to disk')
|
core.info('Writing archive to disk')
|
||||||
const uniqueId = uuid()
|
const uniqueId = uuid()
|
||||||
const archivePath = IS_WINDOWS
|
const archivePath = path.join(repositoryPath, `${uniqueId}.tar.gz`)
|
||||||
? path.join(repositoryPath, `${uniqueId}.zip`)
|
|
||||||
: path.join(repositoryPath, `${uniqueId}.tar.gz`)
|
|
||||||
await fs.promises.writeFile(archivePath, archiveData)
|
await fs.promises.writeFile(archivePath, archiveData)
|
||||||
archiveData = Buffer.from('') // Free memory
|
archiveData = Buffer.from('') // Free memory
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user