From 8d10629e3ee04fd2f346319f8904b8a99e4a8ab1 Mon Sep 17 00:00:00 2001 From: ChrGri Date: Mon, 11 Nov 2024 16:04:05 +0100 Subject: [PATCH] Update obtainVersionString.py --- Helper/obtainVersionString.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Helper/obtainVersionString.py b/Helper/obtainVersionString.py index 5b9cb7c9..bdc72031 100644 --- a/Helper/obtainVersionString.py +++ b/Helper/obtainVersionString.py @@ -27,7 +27,7 @@ tag_name = latest_release['tag_name'] # Use regex to extract the number after the last underscore - match = re.search(r'_v(\d+)$', tag_name) + match = re.search(r'Release_Package_v(\d+)', tag_name) if match: version_number = float(match.group(1)) # Convert the extracted version to an integer new_version_number = version_number + .1 # Increment the version number by 1