This is an automated email from the ASF dual-hosted git repository.

fokko pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/iceberg.git


The following commit(s) were added to refs/heads/main by this push:
     new e32df0ce08 Init git credentials in site-ci (#9525)
e32df0ce08 is described below

commit e32df0ce08086758c44e9174c582638068244073
Author: Brian "bits" Olsen <[email protected]>
AuthorDate: Fri Jan 19 13:14:26 2024 -0800

    Init git credentials in site-ci (#9525)
---
 .github/workflows/site-ci.yml | 5 ++++-
 site/dev/deploy.sh            | 2 +-
 2 files changed, 5 insertions(+), 2 deletions(-)

diff --git a/.github/workflows/site-ci.yml b/.github/workflows/site-ci.yml
index 2532e493e6..b0a375a37c 100644
--- a/.github/workflows/site-ci.yml
+++ b/.github/workflows/site-ci.yml
@@ -33,5 +33,8 @@ jobs:
         with:
           python-version: 3.x
       - name: Deploy Iceberg documentation
-        run: make deploy
+        run: |
+          git config --global user.name 'GitHub Actions'
+          git config --global user.email '[email protected]'
+          make deploy
         working-directory: ./site
diff --git a/site/dev/deploy.sh b/site/dev/deploy.sh
index bc0167e204..64c7276e5c 100755
--- a/site/dev/deploy.sh
+++ b/site/dev/deploy.sh
@@ -20,5 +20,5 @@ set -e
 
 ./dev/setup_env.sh
 
-mkdocs gh-deploy --remote-name "${REMOTE}"  # --remote-branch asf-site
+mkdocs gh-deploy --no-history # --remote-branch asf-site
 

Reply via email to