Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to get the rss feed of github release , only latest release, exclude pre release?

For bitcoin, the release page:
https://github.com/bitcoin/bitcoin/releases
I can get github release rss seed by append ".atom" on it
https://github.com/bitcoin/bitcoin/releases.atom
But this will include pre release tags.
How can I get latest release tag only?

like image 987
DinoStray Avatar asked Dec 31 '18 14:12

DinoStray


People also ask

How do I pull latest release from GitHub?

On GitHub.com, navigate to the main page of the repository. To the right of the list of files, click Releases. To copy a unique URL to your clipboard, find the release you want to link to, right click the title, and copy the URL. Alternatively, right click Latest Release and copy the URL to share it.

What is GitHub pre release?

Pre-release releases are used for cases where the code is in early preview and may still contain bugs. Stable releases typically aren't released with known bugs and are geared towards wide adoption.

What is new release in GitHub?

What Are Releases In GitHub? Releases in GitHub are the one-stop solution from GitHub to provide software packages in binary files along with their release notes for every release of the software. Binary files are a great way to give the user a version of the software in the form of code until a particular point.

Are GitHub releases public?

No, currently it's not possible to have public releases in a private repository.


1 Answers

Pre-releases are listed in the releases.atom feed, but they are not marked as pre-releases (no way to separate a pre-release from a final release as far as I can tell).

This information is instead available from the GitHub API.

like image 181
Isaiah Norton Avatar answered Oct 21 '22 07:10

Isaiah Norton