We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 65c8c94 commit c2a3e9cCopy full SHA for c2a3e9c
.github/workflows/create_release_tag.py
@@ -357,8 +357,8 @@ def main():
357
filename, wheel_url = get_file_info_by_sha(sha)
358
tag_name, release_title, version = generate_tag_and_title(filename)
359
release_id, release_body, asset_id = get_release_info(tag_name)
360
- update_release_body(release_id, commit_sha, release_body)
361
- update_release_asset(wheel_url, asset_id)
+ update_release_body(release_id, commit_sha, release_body) if release_id else None
+ update_release_asset(wheel_url, asset_id) if asset_id else None
362
363
print(f"Found {len(filenames)} files to process")
364
# Process each filename
0 commit comments