Reply 20 of 28, by genomelak
zirkoni wrote on 2025-01-17, 15:23:Why is the binary stored in the git repo? https://github.com/joelek/wc-refurbished/tree/master/dist […]
Why is the binary stored in the git repo?
https://github.com/joelek/wc-refurbished/tree/master/distGenerally you don't want to store binaries in git. The "releases" menu in github is for sharing the release binaries.
Anyway, great work.
Thanks!
The reason for storing the binary in the repo and not using the releases feature is because it's a GitHub-specific feature. My workflow involves multiple upstreams and I prefer to be able to sync all state between them. I can only do this if I limit myself to using only core git features such as tags which is similar to releases. The only downside with this approach is that build artifacts have to be checked in but I can live with that 😀