|
|
@ -8137,7 +8137,8 @@ function downloadRepository(accessToken, owner, repo, ref, repositoryPath) {
|
|
|
|
const extraDirectoryName = archiveFileNames[0];
|
|
|
|
const extraDirectoryName = archiveFileNames[0];
|
|
|
|
core.info(`Resolved ${extraDirectoryName}`); // contains the short SHA
|
|
|
|
core.info(`Resolved ${extraDirectoryName}`); // contains the short SHA
|
|
|
|
const tempRepositoryPath = path.join(extractPath, extraDirectoryName);
|
|
|
|
const tempRepositoryPath = path.join(extractPath, extraDirectoryName);
|
|
|
|
for (const fileName of tempRepositoryPath) {
|
|
|
|
// Move the files
|
|
|
|
|
|
|
|
for (const fileName of (yield fs.promises.readdir(tempRepositoryPath))) {
|
|
|
|
const sourcePath = path.join(tempRepositoryPath, fileName);
|
|
|
|
const sourcePath = path.join(tempRepositoryPath, fileName);
|
|
|
|
const targetPath = path.join(repositoryPath, fileName);
|
|
|
|
const targetPath = path.join(repositoryPath, fileName);
|
|
|
|
yield io.mv(sourcePath, targetPath);
|
|
|
|
yield io.mv(sourcePath, targetPath);
|
|
|
|