This is an automated email from the ASF dual-hosted git repository.
chesnay pushed a commit to branch release-1.16
in repository https://gitbox.apache.org/repos/asf/flink.git
The following commit(s) were added to refs/heads/release-1.16 by this push:
new b02cbc30ade [hotfix][docs] Fix git permission issue attempt
b02cbc30ade is described below
commit b02cbc30ade1ac4e40b15a3bbcbf81c6e7444ce5
Author: Chesnay Schepler <[email protected]>
AuthorDate: Wed Nov 1 16:58:01 2023 +0100
[hotfix][docs] Fix git permission issue attempt
---
.github/workflows/docs.sh | 2 ++
1 file changed, 2 insertions(+)
diff --git a/.github/workflows/docs.sh b/.github/workflows/docs.sh
index fbc03f1f99d..6671f0ed7b4 100755
--- a/.github/workflows/docs.sh
+++ b/.github/workflows/docs.sh
@@ -30,6 +30,8 @@ if ! curl --fail -OL $HUGO_REPO ; then
exit 1
fi
tar -zxvf $HUGO_ARTIFACT -C /usr/local/bin
+# workaround for a git security patch
+git config --global --add safe.directory /root/flink
git submodule update --init --recursive
# Setup the external documentation modules
cd docs