Skip to content

Commit

Permalink
Added some log output when check_version is successfull
Browse files Browse the repository at this point in the history
  • Loading branch information
naschorr committed Mar 10, 2024
1 parent afff327 commit f5522ee
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions .github/scripts/check_version.py
Original file line number Diff line number Diff line change
Expand Up @@ -105,6 +105,11 @@ def check_versions(self, latest_released_version: str) -> bool:
print(f"Version {electron_manifest_version} is not greater than latest released version {latest_released_semantic_version}")
return False

## Provide some useful output in the log if things are successful
print(f"Configured versions are all the same {electron_manifest_version}, and greater than the latest released version {latest_released_semantic_version}")
for path, version in path_version_map.items():
print(f"{path} has version {version}")

return True


Expand Down

0 comments on commit f5522ee

Please sign in to comment.