chore: Fix parameter order when uploading RPM .repo file to R2

* chore: Fix parameter order when uploading RPM .repo file to R2
This commit is contained in:
Gonçalo Garcia 2025-10-10 15:44:28 +00:00
parent 7987d01a6e
commit d78e64c8cc
1 changed files with 1 additions and 1 deletions

View File

@ -322,7 +322,7 @@ def create_rpm_packaging(
repo_file = pkg_creator.create_repo_file(artifacts_path, binary_name, base_url, gpg_key_url) repo_file = pkg_creator.create_repo_file(artifacts_path, binary_name, base_url, gpg_key_url)
print("Uploading repo file") print("Uploading repo file")
pkg_uploader.upload_pkg_to_r2(repo_file, binary_name + "repo") pkg_uploader.upload_pkg_to_r2(binary_name + "repo", repo_file)
print("uploading latest to r2...") print("uploading latest to r2...")
upload_from_directories(pkg_uploader, "rpm", None, binary_name) upload_from_directories(pkg_uploader, "rpm", None, binary_name)