Fix datetime formatting for last modified image info in download-image.yml

This commit is contained in:
2025-12-03 17:47:33 +01:00
parent 7f6d7fb418
commit 74d7ef82fa

View File

@@ -38,4 +38,6 @@
msg: |
Image cached at: {{ debian_image_path }}
Size: {{ debian_img_final.stat.size | int / 1024 / 1024 / 1024 | round(2) }} GB
Last modified: {{ debian_img_final.stat.mtime | int | strftime('%Y-%m-%d %H:%M:%S') }}
Last modified: {{ debian_img_final.stat.mtime | float | round(0, 'floor') | int | strftime('%Y-%m-%d %H:%M:%S') }}
# Last modified: {{ debian_img_final.stat.mtime | int | strftime('%Y-%m-%d %H:%M:%S') }}