For testing in my build

This commit is contained in:
Eliza Brock Marcum 2020-06-24 14:55:55 -05:00
parent 5b41e77e7a
commit b28dbaf08e
2 changed files with 9 additions and 2 deletions

View File

@ -6717,6 +6717,7 @@ var Inputs;
Inputs["Key"] = "key";
Inputs["Path"] = "path";
Inputs["RestoreKeys"] = "restore-keys";
Inputs["Update"] = "update";
})(Inputs = exports.Inputs || (exports.Inputs = {}));
var Outputs;
(function (Outputs) {

10
dist/save/index.js vendored
View File

@ -6605,8 +6605,13 @@ function run() {
return;
}
if (utils.isExactKeyMatch(primaryKey, state)) {
core.info(`Cache hit occurred on the primary key ${primaryKey}, not saving cache.`);
return;
if (core.getInput(constants_1.Inputs.Update) === "true") {
core.info(`Cache hit occurred on the primary key ${primaryKey}, but updates were enabled, so updating cache.`);
}
else {
core.info(`Cache hit occurred on the primary key ${primaryKey}, not saving cache.`);
return;
}
}
const cachePaths = utils.getInputAsArray(constants_1.Inputs.Path, {
required: true
@ -6802,6 +6807,7 @@ var Inputs;
Inputs["Key"] = "key";
Inputs["Path"] = "path";
Inputs["RestoreKeys"] = "restore-keys";
Inputs["Update"] = "update";
})(Inputs = exports.Inputs || (exports.Inputs = {}));
var Outputs;
(function (Outputs) {