acut3
acut3

Reputation: 11

How can I upload files to https://github.com/downloads/<user>/<repo>/?

I see people hosting files (usually binary files) under https://github.com/downloads/<user>/<repository>/. How do they do it?

Upvotes: 1

Views: 75

Answers (1)

C. Augusto Proiete
C. Augusto Proiete

Reputation: 27818

You can't. That doesn't exist anymore... GitHub used to have a Downloads API that was replaced by the Releases API back in 2013. Old links were redirected and still work as you can see on the example you provided in the comments.

Nowadays, if you want to make files available for download, you should use either the Releases feature or the Packages feature.

GitHub Releases, Tags, and Packages

Upvotes: 1

Related Questions