Skip to content

Commit

Permalink
github-upload-release.py: Fix bug preventing release creation (#84571)
Browse files Browse the repository at this point in the history
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)
  • Loading branch information
tstellar committed Apr 15, 2024
1 parent c837970 commit c24b41d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion llvm/utils/release/github-upload-release.py
Expand Up @@ -107,6 +107,6 @@ def upload_files(repo, release, files):
sys.exit(1)

if args.command == "create":
create_release(llvm_repo, args.release, args.user)
create_release(llvm_repo, args.release)
if args.command == "upload":
upload_files(llvm_repo, args.release, args.files)

0 comments on commit c24b41d

Please sign in to comment.