r/github
1
Posted by4 months ago
= Let’s say I want to host the site with free GitHub pages that allows to download .apk apps (100-150mb) for 5.000-10.000 users. Can I make a download directly from the Github repository or are there any restrictions on this? Should I use Google Drive? =

100% Upvoted

level 1
You should use Github releases. There are restrictions, but you should be fine (I think 1gb per file? But unlimited files per release, unlimited releases, unlimited downloads/bandwidth), and it has great automation support, e.g. you can use github actions to fairly easily setup something that automatically builds your app and pushes the apk files to a new release. So this is definitely the way to go

4