Paul Belanger 62379dccf9
Add prepare-docs-for-afs role
We'll use this role for unified openstack docs publishing.

Change-Id: I879d42cd04ab051b91c0b636856470cd4126b6f2
Signed-off-by: Paul Belanger <pabelanger@redhat.com>
2017-09-08 11:54:02 -04:00

15 lines
580 B
YAML

# Put other branch changes in dir named after branch under the
# build dir. When Zuul copies these files they will be
# accessible under the developer docs root using the branch name.
# EG: feature/foo or milestone-proposed
- name: Move built html to the side
command: "mv {{ doc_build_dir }}/html {{ doc_build_dir }}/tmp"
- name: Ensure destination path exists
file:
path: "{{ doc_build_dir }}/html/{{ zuul.branch | dirname }}"
state: directory
- name: Move html to branch location
command: "mv {{ doc_build_dir }}/tmp {{ doc_build_dir }}/html/{{ zuul.branch }}"