8d6626b061
- Move shade to the published documents in the build script. - Add shade resources and documentation in developer.openstack.org Change-Id: I85885b1bd3a8ec641c36dce0338ad237aa35da50
16 lines
413 B
Bash
Executable File
16 lines
413 B
Bash
Executable File
#!/bin/bash -e
|
|
|
|
mkdir -p publish-docs
|
|
|
|
# Publish documents to api-ref for developer.openstack.org
|
|
for tag in libcloud shade; do
|
|
tools/build-rst.sh firstapp \
|
|
--tag ${tag} --target "api-ref/firstapp-${tag}"
|
|
done
|
|
|
|
# Draft documents
|
|
for tag in dotnet fog openstacksdk pkgcloud jclouds gophercloud; do
|
|
tools/build-rst.sh firstapp \
|
|
--tag ${tag} --target "api-ref/draft/firstapp-${tag}"
|
|
done
|