Skip to content

Commit

Permalink
skare3 release sanity check: the reference name must be the targeted …
Browse files Browse the repository at this point in the history
…release, not the tag
  • Loading branch information
javierggt committed Aug 10, 2022
1 parent c4bb9a6 commit 9c1292a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion skare3_tools/scripts/skare3_release_check.py
Original file line number Diff line number Diff line change
Expand Up @@ -147,7 +147,7 @@ def main():
for filename in files:
with open(filename) as f:
data = yaml.load(f, Loader=yaml.SafeLoader)
if str(tag_name) == str(data['package']['version']):
if str(version_info["final_version"]) == str(data['package']['version']):
packages.append(data['package']['name'])

if not packages:
Expand Down

0 comments on commit 9c1292a

Please sign in to comment.