d9e25949c4
Change-Id: I35268069f9db9b7e68d082f56c252d1f12becb55
15 lines
352 B
YAML
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
|