|
|
|
@ -17,7 +17,8 @@ async function restoreImpl(
|
|
|
|
|
// Validate inputs, this can cause task failure
|
|
|
|
|
if (!utils.isValidEvent()) {
|
|
|
|
|
utils.logWarning(
|
|
|
|
|
`Event Validation Error: The event type ${process.env[Events.Key]
|
|
|
|
|
`Event Validation Error: The event type ${
|
|
|
|
|
process.env[Events.Key]
|
|
|
|
|
} is not supported because it's not tied to a branch or tag ref.`
|
|
|
|
|
);
|
|
|
|
|
return;
|
|
|
|
@ -30,7 +31,9 @@ async function restoreImpl(
|
|
|
|
|
const cachePaths = utils.getInputAsArray(Inputs.Path, {
|
|
|
|
|
required: true
|
|
|
|
|
});
|
|
|
|
|
const enableCrossOsArchive = utils.getInputAsBool(Inputs.EnableCrossOsArchive);
|
|
|
|
|
const enableCrossOsArchive = utils.getInputAsBool(
|
|
|
|
|
Inputs.EnableCrossOsArchive
|
|
|
|
|
);
|
|
|
|
|
|
|
|
|
|
const cacheKey = await cache.restoreCache(
|
|
|
|
|
cachePaths,
|
|
|
|
|