Skip to content

Commit

Permalink
action: build the action
Browse files Browse the repository at this point in the history
  • Loading branch information
github-actions committed Nov 20, 2023
1 parent 17d19d3 commit c7c70bb
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 0 deletions.
2 changes: 2 additions & 0 deletions dist/restore-only/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -62541,7 +62541,9 @@ function restoreImpl(stateProvider) {
const enableCrossOsArchive = utils.getInputAsBool(constants_1.Inputs.EnableCrossOsArchive);
const failOnCacheMiss = utils.getInputAsBool(constants_1.Inputs.FailOnCacheMiss);
const lookupOnly = utils.getInputAsBool(constants_1.Inputs.LookupOnly);
core.info(`::group::Logs while restoring`);
let cacheKey = yield utils.getCacheKey(cachePaths, primaryKey, restoreKeys, lookupOnly, enableCrossOsArchive);
core.info(`::endgroup::`);
const restoreKeyHit = utils.getInputAsBool(constants_1.Inputs.RestoreKeyHit);
const restoreKey = yield utils.getCacheKey(cachePaths, primaryKey, restoreKeys, true, enableCrossOsArchive);
if (restoreKeyHit) {
Expand Down
2 changes: 2 additions & 0 deletions dist/restore/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -62572,7 +62572,9 @@ function restoreImpl(stateProvider) {
const enableCrossOsArchive = utils.getInputAsBool(constants_1.Inputs.EnableCrossOsArchive);
const failOnCacheMiss = utils.getInputAsBool(constants_1.Inputs.FailOnCacheMiss);
const lookupOnly = utils.getInputAsBool(constants_1.Inputs.LookupOnly);
core.info(`::group::Logs while restoring`);
let cacheKey = yield utils.getCacheKey(cachePaths, primaryKey, restoreKeys, lookupOnly, enableCrossOsArchive);
core.info(`::endgroup::`);
const restoreKeyHit = utils.getInputAsBool(constants_1.Inputs.RestoreKeyHit);
const restoreKey = yield utils.getCacheKey(cachePaths, primaryKey, restoreKeys, true, enableCrossOsArchive);
if (restoreKeyHit) {
Expand Down

0 comments on commit c7c70bb

Please sign in to comment.