mirror of https://github.com/actions/cache.git
16 lines
335 B
TypeScript
16 lines
335 B
TypeScript
import * as core from "@actions/core";
|
|
|
|
import saveImpl from "./saveImpl";
|
|
import { NullStateProvider } from "./stateProvider";
|
|
|
|
async function run(): Promise<void> {
|
|
const cacheId = await saveImpl(new NullStateProvider());
|
|
if (cacheId === -1) {
|
|
core.warning(`Cache save failed.`);
|
|
}
|
|
}
|
|
|
|
run();
|
|
|
|
export default run;
|