mirror of
https://gitea.com/actions/cache.git
synced 2024-11-10 22:42:28 +08:00
18 lines
465 B
TypeScript
18 lines
465 B
TypeScript
|
import * as core from "@actions/core";
|
||
|
|
||
|
import { Outputs } from "./constants";
|
||
|
import run from "./restoreImpl";
|
||
|
import * as utils from "./utils/actionUtils";
|
||
|
|
||
|
async function restoreOnly(): Promise<void> {
|
||
|
const cacheKey = await run();
|
||
|
if (cacheKey) {
|
||
|
// Store the matched cache key in output
|
||
|
core.setOutput(Outputs.Key, utils.getCacheState());
|
||
|
|
||
|
core.info(`Cache restored from key: ${cacheKey}`);
|
||
|
}
|
||
|
}
|
||
|
|
||
|
export default restoreOnly;
|