diff mbox series

[isar-cip-core,11/11] Upload to KernelCI production

Message ID 20211115161724.19516-12-alice.ferrazzi@miraclelinux.com (mailing list archive)
State Handled Elsewhere
Headers show
Series cip-core-image-kernelci | expand

Commit Message

Alice Ferrazzi Nov. 15, 2021, 4:17 p.m. UTC
Signed-off-by: Alice Ferrazzi <alice.ferrazzi@miraclelinux.com>
---
 scripts/deploy-kernelci.py | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)
diff mbox series

Patch

diff --git a/scripts/deploy-kernelci.py b/scripts/deploy-kernelci.py
index 1df4e72..479b971 100755
--- a/scripts/deploy-kernelci.py
+++ b/scripts/deploy-kernelci.py
@@ -9,7 +9,7 @@  import time
 from urllib.parse import urljoin
 
 cdate=time.strftime("%Y%m%d")
-api="https://api.staging.kernelci.org/upload"
+api="https://api.kernelci.org/upload"
 token=os.getenv("KERNELCI_TOKEN")
 
 release=sys.argv[1]
@@ -66,11 +66,11 @@  if os.path.exists(rootfs) and os.path.exists(initrd):
     upload_file(api, token, upload_path, rootfs, rootfs_filename)
     print("uploading initrd to KernelCI")
     upload_file(api, token, upload_path, initrd, initrd_gz_filename)
-    print("uploaded to: https://storage.staging.kernelci.org"+upload_path)
+    print("uploaded to: https://storage.kernelci.org"+upload_path)
 
     # Upload latest
     print("uploading rootfs to KernelCI CIP latest")
     upload_file(api, token, upload_path_latest, rootfs, rootfs_filename)
     print("uploading initrd to KernelCI CIP latest")
     upload_file(api, token, upload_path_latest, initrd, initrd_gz_filename)
-    print("uploaded to: https://storage.staging.kernelci.org"+upload_path_latest)
+    print("uploaded to: https://storage.kernelci.org"+upload_path_latest)