This is an automated email from the ASF dual-hosted git repository.
rawkintrevo pushed a commit to branch trunk
in repository https://gitbox.apache.org/repos/asf/mahout.git
The following commit(s) were added to refs/heads/trunk by this push:
new 9453f20 2135- Fix Website build
9453f20 is described below
commit 9453f2046e47d1612d4433479a2b3b66e0a42411
Author: Trevor Grant <[email protected]>
AuthorDate: Tue Feb 2 13:45:13 2021 -0600
2135- Fix Website build
---
.github/workflows/website.yml | 4 +++-
1 file changed, 3 insertions(+), 1 deletion(-)
diff --git a/.github/workflows/website.yml b/.github/workflows/website.yml
index 3102920..4c56c89 100644
--- a/.github/workflows/website.yml
+++ b/.github/workflows/website.yml
@@ -43,11 +43,13 @@ jobs:
git config user.name "GitHub Actions Bot"
git config user.email "<>"
./website/build_site.sh
+ git checkout asf-site
cp -r $WORKDIR/* .
git add .
git commit -m "Automatic Site Publish by Buildbot"
- git push -u origin trunk:asf-site
+ git push
env:
WORKDIR: /tmp/mahout-site
RUBY_PATH: ~/shared/.rvm
GEM_HOME: ${RUBY_PATH}/gems
+