Skip to content

Commit 7b1adf2

Browse files
committed
Fix release URL parsing for tap publish
Read the GitHub CLI release URL from the field so the tag workflow stops waiting and can bump the Homebrew tap.
1 parent 235a771 commit 7b1adf2

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

scripts/release/publish_release.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -89,7 +89,7 @@ def fetch_public_release_metadata(
8989
if missing:
9090
joined = ", ".join(missing)
9191
raise SystemExit(f"missing source release assets for {tag}: {joined}")
92-
release_url = payload.get("html_url")
92+
release_url = payload.get("url")
9393
if not isinstance(release_url, str):
9494
raise SystemExit(f"missing release url for public release {tag}")
9595
return ReleaseMetadata(

0 commit comments

Comments
 (0)