zuul-jobs/roles/publish-artifacts-to-fileserver/tasks/main.yaml
Albin Vass a745c3a780 publish-artifacts-to-fileserver: do not synchronize owner
Change-Id: Iab220d08020ef3bb8dd3584c6d29155ed918931e
2020-05-18 17:05:32 +02:00

14 lines
349 B
YAML

- name: Ensure project artifact directory exists
file:
path: "{{ zuul_fileserver_project_path }}"
state: directory
recurse: yes
mode: 0775
- name: Upload contents of the artifacts folder
synchronize:
src: "{{ zuul.executor.work_root }}/artifacts/"
dest: "{{ zuul_fileserver_project_path }}/"
owner: no
group: no