Cosimo Matteini

Results 5 comments of Cosimo Matteini

Hi! Looking at the GitHub API [response](https://docs.github.com/en/rest/releases/releases#get-the-latest-release) we should be able to include source code archives from releases without any problems. Maybe by default, source code should not be included?...

Yeah, exactly what I was thinking. There's no real gain in filtering them out other than creating more code to maintain.

That's not good news, but let me know if you need help! I'm wondering if there is another API to just get the source code for a release? But from...

At this point let's just use the `tarball_url` and `zipball_url` from the release api response. The problem is that it seems there is no Content-Length HTTP header available. This will...

I think we can just create the filenames manually: ```rust let base_name = format!("{repo}-{tag}"); let tarball_name = format!("{base_name}.tar.gz"); let zipball_name = format!("{base_name}.zip"); ``` This is the same file names used...