Skip to content

Commit

Permalink
ci(autobumper): skip github pre-releases
Browse files Browse the repository at this point in the history
  • Loading branch information
maxmoehl committed Jan 15, 2024
1 parent adbd6e2 commit 62f262d
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions ci/scripts/autobump-dependencies.py
Original file line number Diff line number Diff line change
Expand Up @@ -260,6 +260,8 @@ def get_release_download_url(rel):
latest_version = version.parse("0.0.0")

for rel in releases:
if rel.prerelease:
continue
current_raw = rel.tag_name.lstrip(self.tagname_prefix)
current_version = version.parse(current_raw)
if latest_version < current_version and current_raw.startswith(self.pinned_version):
Expand Down

0 comments on commit 62f262d

Please sign in to comment.