chore(upload_helm_chart): use faster upload using sync
diff --git a/roles/upload_helm_chart/tasks/main.yml b/roles/upload_helm_chart/tasks/main.yml
index 7f3f230..c14a28c 100644
--- a/roles/upload_helm_chart/tasks/main.yml
+++ b/roles/upload_helm_chart/tasks/main.yml
@@ -1,7 +1,8 @@
- name: Upload Helm chart
- ansible.builtin.copy:
+ ansible.posix.synchronize:
src: "{{ upload_helm_chart_src }}"
dest: "{{ upload_helm_chart_dest }}"
- owner: root
- group: root
- mode: 0644
+ archive: false
+ recursive: true
+ times: true
+ delete: true