We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 540aedd commit e06a9c8Copy full SHA for e06a9c8
playbooks/roles/kdevops_archive/tasks/main.yml
@@ -144,13 +144,10 @@
144
145
- name: Display archive file information
146
debug:
147
- msg: |
148
- Found archive file:
149
- Path: {{ item.stat.path }}
150
- Size: {{ (item.stat.size / 1024 / 1024) | round(2) }} MB
+ msg: "{{ item.stat.path }} ({{ (item.stat.size / 1024 / 1024) | round(2) }}MB)"
151
loop: "{{ archive_stats.results }}"
152
loop_control:
153
- label: "{{ item.path | basename }}"
+ label: "{{ item.stat.path | basename }}"
154
155
- name: Check if kdevops-results-archive directory exists
156
stat:
0 commit comments