Skip to content

Commit

Permalink
log directories about to be cached
Browse files Browse the repository at this point in the history
  • Loading branch information
rarmatei committed Aug 2, 2024
1 parent 042dfad commit 23e422f
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 0 deletions.
1 change: 1 addition & 0 deletions workflow-steps/cache/output/post.js
Original file line number Diff line number Diff line change
Expand Up @@ -6021,6 +6021,7 @@ if (!!cacheWasHit) {
}
const key = hashKey(input_key);
const paths = buildCachePaths(input_paths);
console.log("Storing the following directories..\n" + paths.join("\n"));
cacheClient.storeV2(
new StoreRequest({
key,
Expand Down
2 changes: 2 additions & 0 deletions workflow-steps/cache/post.ts
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,8 @@ if (!!cacheWasHit) {
const key = hashKey(input_key);
const paths = buildCachePaths(input_paths);

console.log('Storing the following directories..\n' + paths.join('\n'));

cacheClient
.storeV2(
new StoreRequest({
Expand Down

0 comments on commit 23e422f

Please sign in to comment.