get releases empty in github api -


i try idea-community releases following, return empty

curl "https://api.github.com/repos/jetbrains/intellij-community/releases" 

but when releases exist in here

how releases

from the documentation:

this returns list of releases, not include regular git tags have not been associated release. list of git tags, use repository tags api.

github's ui confusing, repository doesn't have releases, github-specific concept. "releases" seeing regular git tags.

try instead:

curl https://api.github.com/repos/jetbrains/intellij-community/tags 

see what's difference between tag , release?


Comments

Popular posts from this blog

Hatching array of circles in AutoCAD using c# -

ios - UITEXTFIELD InputView Uipicker not working in swift -

Python Pig Latin Translator -