2d2a717f29
The existing code in branch made a directory for build/{{ branch.tag | dirname }} but then moved things to build/{{ branch.tag | basename }} which produced: html/ html/feature html/zuulv3 Fix that. While we're in there, go ahead and change this into individual ansible tasks. Change-Id: Ib757d1f8bf76012d2d436565913e750c4a5d52a7
16 lines
588 B
YAML
16 lines
588 B
YAML
# Put stable release changes in dir named after stable release under the
|
|
# build dir. When Zuul copies these files they will be accessible under
|
|
# the developer docs root using the stable release name.
|
|
- 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"
|
|
state: directory
|
|
|
|
- name: Move html to branch location without stable prefix
|
|
command: >-
|
|
mv {{ doc_build_dir }}/tmp
|
|
{{ doc_build_dir }}/html/{{ zuul.branch | replace('stable/', '') }}
|