From 9388f75fafeb7668a62eb02aec7974db46392b2d Mon Sep 17 00:00:00 2001 From: Revant Nandgaonkar Date: Tue, 2 Aug 2022 04:27:13 +0530 Subject: [PATCH] fix: get_latest_tags script --- .github/scripts/get_latest_tags.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.github/scripts/get_latest_tags.py b/.github/scripts/get_latest_tags.py index c1f2cdc5..b2e083c4 100644 --- a/.github/scripts/get_latest_tags.py +++ b/.github/scripts/get_latest_tags.py @@ -19,6 +19,8 @@ def get_latest_tag(repo: Repo, version: MajorVersion) -> str: refs = subprocess.check_output( ( "git", + "-c", + "versionsort.suffix=-", "ls-remote", "--refs", "--tags",