Skip to content

Commit

Permalink
Update obtainVersionString.py
Browse files Browse the repository at this point in the history
  • Loading branch information
ChrGri authored Nov 11, 2024
1 parent 7f61517 commit 8d10629
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Helper/obtainVersionString.py
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 8d10629

Please sign in to comment.