This is an automated email from the ASF dual-hosted git repository.
kou pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/arrow-site.git
The following commit(s) were added to refs/heads/main by this push:
new 6aa933e5c3d Fix asf-site deploy CI (#688)
6aa933e5c3d is described below
commit 6aa933e5c3d6083267c730f34a62acf3adf8f7b5
Author: Sutou Kouhei <[email protected]>
AuthorDate: Tue Aug 5 20:55:53 2025 +0900
Fix asf-site deploy CI (#688)
Fixes #687
We need to run "git config" in a directory that has ".git/".
---
.github/workflows/deploy.yml | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/.github/workflows/deploy.yml b/.github/workflows/deploy.yml
index 9a27442f807..0117dcc3b4e 100644
--- a/.github/workflows/deploy.yml
+++ b/.github/workflows/deploy.yml
@@ -117,13 +117,13 @@ jobs:
name: asf-site
- name: Push
run: |
- git config user.name "github-actions[bot]"
- git config user.email "github-actions[bot]@users.noreply.github.com"
mv asf-site/.git ./
rm -rf asf-site
tar xf asf-site.tar.gz
mv .git asf-site/
cd asf-site
+ git config user.name "github-actions[bot]"
+ git config user.email "github-actions[bot]@users.noreply.github.com"
if [ "$(git status --porcelain)" != "" ]; then
# There are changes to the built site
git add --all