1
mirror of https://github.com/actions/cache.git synced 2026-02-14 22:20:33 +00:00
This commit is contained in:
Sankalp Kotewar
2022-11-29 09:51:53 +00:00
committed by GitHub
parent ab0e7714ce
commit af1210e2a3
6 changed files with 105 additions and 75 deletions

7
src/restore-step.ts Normal file
View File

@@ -0,0 +1,7 @@
import restore from "./restore";
async function runRestoreStep(): Promise<void> {
await restore();
}
runRestoreStep();