c5fa73302b
Fixed also a bunch of English-language to the getting started text co-authored-by: Diane Fleming Change-Id: I9318cdefb628a7441a984f7c8f200202b41430dd
16 lines
372 B
Bash
Executable File
16 lines
372 B
Bash
Executable File
#!/bin/bash -e
|
|
|
|
mkdir -p publish-docs
|
|
|
|
# Publish documents to api-ref for developer.openstack.org
|
|
for tag in libcloud; do
|
|
tools/build-rst.sh firstapp \
|
|
--tag ${tag} --target "api-ref/firstapp-${tag}"
|
|
done
|
|
|
|
# Draft documents
|
|
for tag in dotnet fog pkgcloud shade; do
|
|
tools/build-rst.sh firstapp \
|
|
--tag ${tag} --target "draft/firstapp-${tag}"
|
|
done
|