|
|
@ -4616,6 +4616,7 @@ var Inputs;
|
|
|
|
Inputs["Path"] = "path";
|
|
|
|
Inputs["Path"] = "path";
|
|
|
|
Inputs["RestoreKeys"] = "restore-keys";
|
|
|
|
Inputs["RestoreKeys"] = "restore-keys";
|
|
|
|
Inputs["UploadChunkSize"] = "upload-chunk-size";
|
|
|
|
Inputs["UploadChunkSize"] = "upload-chunk-size";
|
|
|
|
|
|
|
|
Inputs["SkipUpload"] = "skip-upload";
|
|
|
|
})(Inputs = exports.Inputs || (exports.Inputs = {}));
|
|
|
|
})(Inputs = exports.Inputs || (exports.Inputs = {}));
|
|
|
|
var Outputs;
|
|
|
|
var Outputs;
|
|
|
|
(function (Outputs) {
|
|
|
|
(function (Outputs) {
|
|
|
@ -46795,6 +46796,9 @@ function run() {
|
|
|
|
core.info(`Cache hit occurred on the primary key ${primaryKey}, not saving cache.`);
|
|
|
|
core.info(`Cache hit occurred on the primary key ${primaryKey}, not saving cache.`);
|
|
|
|
return;
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (core.getBooleanInput(constants_1.Inputs.SkipUpload)) {
|
|
|
|
|
|
|
|
core.info(`Skipping upload of cache since the skip-upload input was set.`);
|
|
|
|
|
|
|
|
}
|
|
|
|
const cachePaths = utils.getInputAsArray(constants_1.Inputs.Path, {
|
|
|
|
const cachePaths = utils.getInputAsArray(constants_1.Inputs.Path, {
|
|
|
|
required: true
|
|
|
|
required: true
|
|
|
|
});
|
|
|
|
});
|
|
|
|