Replies: 1 comment
-
I think I found the source code. It's at https://github.com/actions/toolkit/tree/main/packages/cache Now it's too late, but it would have been nice to name the NPM package |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
I am not a JS / TS developer, but I would like to give it a try and implement a local filesystem backed caching.
This is mostly to be used with ARC (Kubernernets)
The idea is that Kubernetes will handle the actual backend, and the caching is accessed using local filesystem.
So looking to solve this issue #354
I have checked https://github.com/actions/cache/blob/main/src/saveImpl.ts
And I see this "magic" import
import * as cache from "@actions/cache";
and then the call to
cache.saveCache()
But I can't find the source code.
Is the code in this repo?
Thanks
Beta Was this translation helpful? Give feedback.
All reactions