This is an automated email from the ASF dual-hosted git repository. bertty pushed a commit to branch develop in repository https://gitbox.apache.org/repos/asf/incubator-wayang-website.git
commit b1a5f72b7ee702419a477632cec935609bc4ff8f Author: Bertty Contreras-Rojas <[email protected]> AuthorDate: Mon Feb 22 02:03:39 2021 -0300 correction in the script to deploy page --- script/cibuild | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/script/cibuild b/script/cibuild index 386a63c..2af6c28 100644 --- a/script/cibuild +++ b/script/cibuild @@ -12,10 +12,13 @@ mv _config.yml.tmp _config.yml bundle exec jekyll build #bundle exec htmlproofer ./_site - -cd _site +mkdir -p ../tmp +mv ./_site/* ../tmp git checkout --orphan ${BRANCH_PAGE} +rm -rf ./* + +mv ../tmp ./ git add -A git status
