zuul-jobs/roles/fetch-translation-output/tasks/main.yaml
Albin Vass d9e25949c4 fetch-translation-output: do not synchronize owner
Change-Id: I35268069f9db9b7e68d082f56c252d1f12becb55
2020-05-18 17:05:32 +02:00

15 lines
352 B
YAML

- name: Check for translation files
stat:
path: "{{ translation_output_src }}"
register: translation_files
- name: Collect translation source files
synchronize:
dest: "{{ zuul_executor_dest }}"
mode: pull
src: "{{ translation_output_src }}"
verify_host: true
owner: no
group: no
when: translation_files.stat.exists