Make save/restore logs akin (#509)

- Print primary key when saving cache
This commit is contained in:
Yaroslav Dynnikov 2021-02-04 01:07:49 +03:00 committed by GitHub
parent aeaf731ae2
commit 26968a09c0
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 0 deletions

View file

@ -44,6 +44,7 @@ async function run(): Promise<void> {
await cache.saveCache(cachePaths, primaryKey, {
uploadChunkSize: utils.getInputAsInt(Inputs.UploadChunkSize)
});
core.info(`Cache saved with key: ${primaryKey}`);
} catch (error) {
if (error.name === cache.ValidationError.name) {
throw error;