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:
parent
c6fc36f7cc
commit
8469ae6c87
1 changed files with 3 additions and 3 deletions
6
.github/workflows/doc-publish.yml
vendored
6
.github/workflows/doc-publish.yml
vendored
|
@ -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
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue