3
0
Fork 0
mirror of https://code.forgejo.org/actions/cache.git synced 2025-04-26 05:15:33 +00:00

Release v1.0.1

This commit is contained in:
Josh Gross 2019-11-05 15:42:18 -05:00
parent 9d8c7b4041
commit 0f810ad45a
6 changed files with 91 additions and 83 deletions

View file

@ -54,12 +54,12 @@ async function run() {
core.debug(`Tar Path: ${tarPath}`);
await exec(`"${tarPath}"`, args);
const fileSizeLimit = 200 * 1024 * 1024; // 200MB
const fileSizeLimit = 400 * 1024 * 1024; // 400MB
const archiveFileSize = fs.statSync(archivePath).size;
core.debug(`File Size: ${archiveFileSize}`);
if (archiveFileSize > fileSizeLimit) {
core.warning(
`Cache size of ${archiveFileSize} bytes is over the 200MB limit, not saving cache.`
`Cache size of ${archiveFileSize} bytes is over the 400MB limit, not saving cache.`
);
return;
}