fix: remove the sha256 at the crane copy, this way it creates a tag (#1045)

diff --git a/roles/image_manifest/tasks/main.yml b/roles/image_manifest/tasks/main.yml
index d2c3d8f..7cdc9b7 100644
--- a/roles/image_manifest/tasks/main.yml
+++ b/roles/image_manifest/tasks/main.yml
@@ -15,7 +15,7 @@
   when: image_manifest_mirror
   changed_when: false
   ansible.builtin.command:
-    crane copy {{ atmosphere_images[item] }} {{ image_manifest_data['atmosphere_images'][item] }}
+    crane copy {{ atmosphere_images[item] }} {{ image_manifest_data['atmosphere_images'][item] | regex_replace('@sha256:[a-z0-9]+', '') }}
   loop: |
     {%- if image_manifest_images is string -%}
     {{ image_manifest_images | split(',') }}