-
-
Notifications
You must be signed in to change notification settings - Fork 3.5k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
CI(): fix build caching #9404
CI(): fix build caching #9404
Conversation
Build Stats
|
Update action.yml
4425f92
to
8f01808
Compare
This was supposed to rebuild every commit, so i wonder why with master wasn't good. |
oh right the merge event probably doesn't have a |
Motivation
closes #9403
Description
The build caching was producing a cache for the push to master event.
That is not desired because each time the build changes.
The cache key was wrong (
npm-
). It was generic so the stale cache was used for a long time.Changes
Cache the build only for PRs
Gist
In Action