mirror of
https://github.com/actions/cache.git
synced 2025-06-24 19:31:10 +02:00
Format cache size and display on info (#85)
This commit is contained in:
@ -57,7 +57,9 @@ async function run(): Promise<void> {
|
||||
core.debug(`File Size: ${archiveFileSize}`);
|
||||
if (archiveFileSize > fileSizeLimit) {
|
||||
core.warning(
|
||||
`Cache size of ${archiveFileSize} bytes is over the 400MB limit, not saving cache.`
|
||||
`Cache size of ~${Math.round(
|
||||
archiveFileSize / (1024 * 1024)
|
||||
)} MB (${archiveFileSize} B) is over the 400MB limit, not saving cache.`
|
||||
);
|
||||
return;
|
||||
}
|
||||
|
Reference in New Issue
Block a user