d1f4e25e15
**Background:** This is a follow-up to the PR that adds sphinx docs. Googleapis.dev hosts client library documentation for several languages as well as documentation for core packages such as google-api-core. It is owned and maintained by the Cloud DevRel Core team. **About this change:** The `kokoro/docs/publish-python.sh` script builds the docs with sphinx, then uses the [googleapis/docuploader](https://github.com/googleapis/docuploader) tool to publish to googleapis.dev. The publish script is triggered manually with a Kokoro RELEASE type job. Googlers, see go link protobuf-docs-python-design for additional internal references.
12 lines
312 B
Bash
Executable File
12 lines
312 B
Bash
Executable File
#!/bin/bash
|
|
# Copied from https://github.com/googleapis/google-cloud-python/blob/master/.kokoro/trampoline.sh
|
|
|
|
set -eo pipefail
|
|
|
|
python3 "${KOKORO_GFILE_DIR}/trampoline_v1.py" || ret_code=$?
|
|
|
|
chmod +x ${KOKORO_GFILE_DIR}/trampoline_cleanup.sh
|
|
${KOKORO_GFILE_DIR}/trampoline_cleanup.sh || true
|
|
|
|
exit ${ret_code}
|