[llvm-branch-commits] [llvm] c24b41d - github-upload-release.py: Fix bug preventing release creation (#84571)

Tom Stellard via llvm-branch-commits llvm-branch-commits at lists.llvm.org
Mon Apr 15 16:14:19 PDT 2024


Author: Tom Stellard
Date: 2024-04-15T16:13:26-07:00
New Revision: c24b41d71f2e5658b0b6618482831f34820f6b4a

URL: https://github.com/llvm/llvm-project/commit/c24b41d71f2e5658b0b6618482831f34820f6b4a
DIFF: https://github.com/llvm/llvm-project/commit/c24b41d71f2e5658b0b6618482831f34820f6b4a.diff

LOG: github-upload-release.py: Fix bug preventing release creation (#84571)

After aa02002491333c42060373bc84f1ff5d2c76b4ce we started passing the
user name to the create_release function and this was being interpreted
as the git tag.

(cherry picked from commit 0b9ce71a256d86c08f2b52ad2e337395b8f54b41)

Added: 
    

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

Removed: 
    


################################################################################
diff  --git a/llvm/utils/release/github-upload-release.py b/llvm/utils/release/github-upload-release.py
index 14ec05062d88c8..8343dee937f78f 100755
--- a/llvm/utils/release/github-upload-release.py
+++ b/llvm/utils/release/github-upload-release.py
@@ -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)


        


More information about the llvm-branch-commits mailing list