Skip to content

Commit 0b9ce71

Browse files
authored
github-upload-release.py: Fix bug preventing release creation (#84571)
After aa02002 we started passing the user name to the create_release function and this was being interpreted as the git tag.
1 parent 0baef3b commit 0b9ce71

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

llvm/utils/release/github-upload-release.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -107,6 +107,6 @@ def upload_files(repo, release, files):
107107
sys.exit(1)
108108

109109
if args.command == "create":
110-
create_release(llvm_repo, args.release, args.user)
110+
create_release(llvm_repo, args.release)
111111
if args.command == "upload":
112112
upload_files(llvm_repo, args.release, args.files)

0 commit comments

Comments
 (0)