Skip to content

Commit 51a29dc

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

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)