github: doc-publish: remove debug flag

Now that we found the permission issue that was causing the aws s3 sync
to fail we can remove the debug flag.

Signed-off-by: Kumar Gala <kumar.gala@linaro.org>
This commit is contained in:
Kumar Gala 2020-02-16 12:03:10 -06:00 committed by Kumar Gala
commit 8469ae6c87

View file

@ -97,16 +97,16 @@ jobs:
if [ "$RELEASE" == "latest" ]; then if [ "$RELEASE" == "latest" ]; then
export export
echo "publish latest docs" echo "publish latest docs"
aws --debug s3 sync --quiet doc/_build/html s3://docs.zephyrproject.org/latest --delete aws s3 sync --quiet doc/_build/html s3://docs.zephyrproject.org/latest --delete
echo "success sync of latest docs" echo "success sync of latest docs"
else else
DOC_RELEASE=${RELEASE}.0 DOC_RELEASE=${RELEASE}.0
echo "publish release docs: ${DOC_RELEASE}" echo "publish release docs: ${DOC_RELEASE}"
aws --debug s3 sync --quiet doc/_build/html s3://docs.zephyrproject.org/${DOC_RELEASE} aws s3 sync --quiet doc/_build/html s3://docs.zephyrproject.org/${DOC_RELEASE}
echo "success sync of rel docs" echo "success sync of rel docs"
fi fi
if [ -d doc/_build/doxygen/html ]; then if [ -d doc/_build/doxygen/html ]; then
echo "publish doxygen" echo "publish doxygen"
aws --debug s3 sync --quiet doc/_build/doxygen/html s3://docs.zephyrproject.org/apidoc/${RELEASE} --delete aws s3 sync --quiet doc/_build/doxygen/html s3://docs.zephyrproject.org/apidoc/${RELEASE} --delete
echo "success publish of doxygen" echo "success publish of doxygen"
fi fi