This is an automated email from the ASF dual-hosted git repository. chengpan pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/kyuubi-website.git
commit 9b9a9344ebe0878499e76c84f090dbbfc3071d0f Author: Cheng Pan <[email protected]> AuthorDate: Tue Jul 23 20:31:47 2024 +0800 Fix asf-site deploy --- .github/workflows/asf-site.yml | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/.github/workflows/asf-site.yml b/.github/workflows/asf-site.yml index 42c7766..5d23496 100644 --- a/.github/workflows/asf-site.yml +++ b/.github/workflows/asf-site.yml @@ -25,3 +25,13 @@ jobs: publish_dir: content destination_dir: content force_orphan: true + - run: | + git config --global user.name "GitHub Actions" + git config --global user.email "[email protected]" + git fetch --all + 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
