Skip to content

Commit

Permalink
fix: List up to 100 releases in list-all (#25)
Browse files Browse the repository at this point in the history
  • Loading branch information
jahands authored Sep 10, 2024
1 parent 8db5353 commit f383312
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/utils.bash
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ function sort_versions() {
function list_github_releases() {
curl "${curl_opts[@]}" \
-H "Accept: application/vnd.github+json" \
"https://api.github.com/repos/$GITHUB_REPO/releases" |
"https://api.github.com/repos/$GITHUB_REPO/releases?per_page=100" |
grep -o '"tag_name": "bun-v.*"' |
sed -E 's/"tag_name": "bun-v(.*)"/\1/'
}
Expand Down

0 comments on commit f383312

Please sign in to comment.