1
0
forked from docs/doc-exports
Artem Goncharov d4de57a7f4
add zuul jobs (#1)
Enable zuul jobs

Reviewed-by: OpenTelekomCloud Bot <None>
Reviewed-by: Vladimir Hasko <vladimirhasko@gmail.com>
2022-05-03 05:20:12 +00:00

20 lines
533 B
YAML

- name: Inspect {{ fetch_doc_artifacts_name }} build directory
find:
file_type: any
follow: true
paths: "{{ fetch_doc_artifacts_rst_source }}"
register: doc_dir
- name: Process {{ fetch_doc_artifacts_name }} archive
when: "doc_dir.matched > 0"
include_tasks: doc.yaml
- name: Find {{ fetch_doc_artifacts_name }} Patch
stat:
path: "{{ fetch_doc_artifacts_patch }}"
register: doc_patch
- name: Process {{ fetch_doc_artifacts_name }} Patch file
when: "doc_patch.stat.exists"
include_tasks: patch.yaml