2020-05-15 04:27:38 +07:00
|
|
|
import * as cache from "@actions/cache";
|
2019-10-31 01:48:49 +07:00
|
|
|
import * as core from "@actions/core";
|
2020-03-18 20:35:13 +07:00
|
|
|
|
2020-04-23 03:36:34 +07:00
|
|
|
import { Events, Inputs, State } from "./constants";
|
2019-10-31 01:48:49 +07:00
|
|
|
import * as utils from "./utils/actionUtils";
|
|
|
|
|
2019-11-13 04:48:02 +07:00
|
|
|
async function run(): Promise<void> {
|
2019-10-31 01:48:49 +07:00
|
|
|
try {
|
2020-09-29 21:58:32 +07:00
|
|
|
if (utils.isGhes()) {
|
|
|
|
core.info("Cache action is not supported on GHES");
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2019-11-22 02:37:54 +07:00
|
|
|
if (!utils.isValidEvent()) {
|
|
|
|
utils.logWarning(
|
|
|
|
`Event Validation Error: The event type ${
|
|
|
|
process.env[Events.Key]
|
2020-04-18 02:46:46 +07:00
|
|
|
} is not supported because it's not tied to a branch or tag ref.`
|
2019-11-22 02:37:54 +07:00
|
|
|
);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2019-10-31 01:48:49 +07:00
|
|
|
const state = utils.getCacheState();
|
|
|
|
|
|
|
|
// Inputs are re-evaluted before the post action, so we want the original key used for restore
|
2020-05-20 00:46:58 +07:00
|
|
|
const primaryKey = core.getState(State.CachePrimaryKey);
|
2019-10-31 01:48:49 +07:00
|
|
|
if (!primaryKey) {
|
2019-11-22 02:37:54 +07:00
|
|
|
utils.logWarning(`Error retrieving key from state.`);
|
2019-10-31 01:48:49 +07:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (utils.isExactKeyMatch(primaryKey, state)) {
|
|
|
|
core.info(
|
|
|
|
`Cache hit occurred on the primary key ${primaryKey}, not saving cache.`
|
|
|
|
);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2020-06-02 22:21:03 +07:00
|
|
|
const cachePaths = utils.getInputAsArray(Inputs.Path, {
|
|
|
|
required: true
|
|
|
|
});
|
2020-05-15 04:27:38 +07:00
|
|
|
|
|
|
|
try {
|
|
|
|
await cache.saveCache(cachePaths, primaryKey);
|
|
|
|
} catch (error) {
|
|
|
|
if (error.name === cache.ValidationError.name) {
|
|
|
|
throw error;
|
|
|
|
} else if (error.name === cache.ReserveCacheError.name) {
|
|
|
|
core.info(error.message);
|
|
|
|
} else {
|
|
|
|
utils.logWarning(error.message);
|
|
|
|
}
|
2019-10-31 01:48:49 +07:00
|
|
|
}
|
|
|
|
} catch (error) {
|
2019-11-22 02:37:54 +07:00
|
|
|
utils.logWarning(error.message);
|
2019-10-31 01:48:49 +07:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
run();
|
|
|
|
|
|
|
|
export default run;
|