Improve upload-image artifact discoverability #2461
Labels
🧑💻 dev experience
developer experience (excluding CI)
🏎️ Quick Issue
Can be fixed in a few hours or less
scripts/upload_image.py
first generates various sizes of the image, uploads all of them, and finally produces a snippet like:All the images are hashed separately after they've been resized, and they're also all uploaded separately into a flat directory. This is bad for searchability and when you have an image like
https://static.rerun.io/<content-hash>_image.png
, it isn't immediately clear if different resolutions for it are available.We could instead calculate the content hash only for the original image, then create a directory like
<original-image-content-hash>_<original-image-name>/
, and then upload all the different resolutions (+ the original) into this directory. We'll continue to generate the pyramid in the same way.The text was updated successfully, but these errors were encountered: