cache/src/save.ts

64 lines
1.9 KiB
TypeScript
Raw Normal View History

import * as cache from "@actions/cache";
2019-10-30 19:48:49 +01:00
import * as core from "@actions/core";
import { Events, Inputs, State } from "./constants";
2019-10-30 19:48:49 +01:00
import * as utils from "./utils/actionUtils";
2019-11-12 22:48:02 +01:00
async function run(): Promise<void> {
2019-10-30 19:48:49 +01:00
try {
2020-09-29 16:58:32 +02:00
if (utils.isGhes()) {
2020-09-30 15:47:16 +02:00
utils.logWarning("Cache action is not supported on GHES");
2020-09-29 16:58:32 +02:00
return;
}
if (!utils.isValidEvent()) {
utils.logWarning(
`Event Validation Error: The event type ${
process.env[Events.Key]
2020-04-17 21:46:46 +02:00
} is not supported because it's not tied to a branch or tag ref.`
);
return;
}
2019-10-30 19:48:49 +01:00
const state = utils.getCacheState();
// Inputs are re-evaluted before the post action, so we want the original key used for restore
const primaryKey = core.getState(State.CachePrimaryKey);
2019-10-30 19:48:49 +01:00
if (!primaryKey) {
utils.logWarning(`Error retrieving key from state.`);
2019-10-30 19:48:49 +01:00
return;
}
if (utils.isExactKeyMatch(primaryKey, state)) {
core.info(
`Cache hit occurred on the primary key ${primaryKey}, not saving cache.`
);
return;
}
2020-06-02 17:21:03 +02:00
const cachePaths = utils.getInputAsArray(Inputs.Path, {
required: true
});
try {
2020-10-02 16:59:55 +02:00
await cache.saveCache(cachePaths, primaryKey, {
uploadChunkSize: utils.getInputAsInt(Inputs.UploadChunkSize)
});
} 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-30 19:48:49 +01:00
}
} catch (error) {
utils.logWarning(error.message);
2019-10-30 19:48:49 +01:00
}
}
run();
export default run;