falcondev-oss / github-actions-cache-server

Self-hosted GitHub Actions cache server implementation. Compatible with official 'actions/cache' action
https://gha-cache-server.falcondev.io
MIT License
131 stars 10 forks source link

How to use it with GitHub actions? #39

Closed fingerart closed 4 months ago

fingerart commented 4 months ago

I checked https://gha-cache-server.falcondev.io, which only describes how to deploy, but does not mention any usage with GitHub actions. I have a macOS locally as a self-hosted runner. I wonder if this library can solve the problem of pointing the cache server to the self-built gha-cache-server.

LouisHaftmann commented 4 months ago

Since we are patching the runner binary directly, there is no need to use a custom action. Just use the default actions/cache.

fingerart commented 4 months ago

Thx.