This commit is contained in:
Erick Zhao 2024-07-11 13:44:30 -07:00
Родитель 4fae03a9e5
Коммит fcb7e39b27
Не найден ключ, соответствующий данной подписи
2 изменённых файлов: 3 добавлений и 18 удалений

Просмотреть файл

@ -39,20 +39,10 @@ export class Cache {
return null;
}
public async putFileInCache(
url: string,
currentPath: string,
fileName: string,
overwrite?: boolean,
): Promise<string> {
public async putFileInCache(url: string, currentPath: string, fileName: string): Promise<string> {
const cachePath = this.getCachePath(url, fileName);
d(`Moving ${currentPath} to ${cachePath}`);
if (await fs.pathExists(cachePath)) {
d('* Replacing existing file');
await fs.remove(cachePath);
}
await fs.move(currentPath, cachePath, { overwrite });
await fs.move(currentPath, cachePath, { overwrite: true });
return cachePath;
}

Просмотреть файл

@ -180,12 +180,7 @@ export async function downloadArtifact(
await validateArtifact(details, tempDownloadPath, downloadArtifact);
return await cache.putFileInCache(
url,
tempDownloadPath,
fileName,
details.artifactName.startsWith('SHASUMS256'), // overwrite the SHASUMS in the cache
);
return await cache.putFileInCache(url, tempDownloadPath, fileName);
});
}