I’ll tell you what to do if you are forced to store binaries on github. The problem is that they often do not start when Windows downloads from there with a .zip archive (link like https://github.com/[user]/[repo] /main.zip ). To solve this problem, you need to create a .gitattributes
file inside, where you specify that git treats everything inside the turnip as binaries and does not put down BOMs (thanks to Serg Bloim for the tip). I do like this:
- create a private repository
- create such file in it
.gitattributes
- inside file:
* binary
- we throw binaries there through the web panel
- make the turnip public