Skip to content

Commit

Permalink
increase the number of releases searched on lookup
Browse files Browse the repository at this point in the history
  • Loading branch information
shadeofblue authored and scx1332 committed Nov 20, 2023
1 parent 2c2c8a8 commit f832d0d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion goth/runner/download/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -232,7 +232,7 @@ def _get_latest_release(
Only the versions with `tag_name` that contains `self.tag_substring`
as a substring are considered.
"""
all_releases = self.gh_api.repos.list_releases()
all_releases = self.gh_api.repos.list_releases(per_page=100)
logger.debug("releases=%s", json.dumps(obj2dict(all_releases)))

def release_filter(release: dict, tag_substring: str) -> bool:
Expand Down

0 comments on commit f832d0d

Please sign in to comment.