Skip to content

Commit

Permalink
hacking python
Browse files Browse the repository at this point in the history
  • Loading branch information
kyclark committed Feb 27, 2025
1 parent b2ce924 commit e329adc
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions .github/workflows/update_release_table.py
Original file line number Diff line number Diff line change
Expand Up @@ -122,7 +122,9 @@ def generate_markdown_table(release) -> str:
table += "|---------|----------|-------------|\n"

for asset in release["assets"]:
print(">>> Asset {}".format(asset["name"]))
if info := extract_os_arch_from_filename(asset["name"]):
print(f" - os {info.os} arch {info.arch}")
download_url = asset["browser_download_url"]
table += f"| {info.os} | {info.arch} | [Download]({download_url}) |\n"

Expand Down

0 comments on commit e329adc

Please sign in to comment.