Skip to content

Commit

Permalink
ci: more print debugging
Browse files Browse the repository at this point in the history
  • Loading branch information
alexogeny committed Aug 20, 2024
1 parent 85d048b commit 927ca5c
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions ci/common.py
Original file line number Diff line number Diff line change
Expand Up @@ -26,11 +26,13 @@ def get_commits_since_last_version(last_version: LastVersion):
stdout=subprocess.PIPE,
text=True,
)
print(result)
else:
# If no last version, get all commits
result = subprocess.run(
["git", "log", "--pretty=format:%s"], stdout=subprocess.PIPE, text=True
)
print(result)
return result.stdout.strip().split("\n")


Expand Down

0 comments on commit 927ca5c

Please sign in to comment.