From 0e232b1886a551ba6f330bb7388b0c118b6421da Mon Sep 17 00:00:00 2001 From: Cheng Pan Date: Tue, 23 Jul 2024 20:31:47 +0800 Subject: [PATCH] Fix asf-site deploy --- .github/workflows/asf-site.yml | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/.github/workflows/asf-site.yml b/.github/workflows/asf-site.yml index 42c7766c..39a79866 100644 --- a/.github/workflows/asf-site.yml +++ b/.github/workflows/asf-site.yml @@ -25,3 +25,12 @@ jobs: publish_dir: content destination_dir: content force_orphan: true + - run: | + git config --global user.name "GitHub Actions" + git config --global user.email "dev@kyuubi.apache.org" + git checkout asf-site + echo 'publish:' >> .asf.yaml + echo ' whoami: asf-site' >> .asf.yaml + git add .asf.yaml + git commit -m '.asf.yaml' + git push origin asf-site