mirror of
https://github.com/actions/cache.git
synced 2025-07-06 08:32:53 +00:00
9 lines
195 B
TypeScript
9 lines
195 B
TypeScript
import * as core from "@actions/core";
|
|
|
|
import { Inputs } from "./constants";
|
|
import { saveRun } from "./saveImpl";
|
|
|
|
const doSave = core.getInput(Inputs.Save);
|
|
if (doSave) {
|
|
saveRun(true);
|
|
}
|