Deploy version 1.3.0

This commit is contained in:
Gitea Actions
2025-09-21 12:22:28 +00:00
parent c6cfc24ff6
commit e81c68490a

8
dist/index.js vendored
View File

@@ -31964,6 +31964,14 @@ async function restoreCache(key) {
}
const archiveSize = fs5.statSync(zstPath).size;
await extractCompressedTar(zstPath);
try {
fs5.unlinkSync(zstPath);
core3.info(`\u{1F5D1}\uFE0F Cache archive deleted: ${zstPath}`);
} catch (err) {
core3.warning(
`Failed to delete cache archive: ${err instanceof Error ? err.message : String(err)}`
);
}
const endTime = Date.now();
const duration = endTime - startTime;
core3.info(