blob: e251d67d7ca0a4b7e873323d19ad471bc1c20ea3 [file] [log] [blame]
#!/bin/bash
npm run clean-install
rm -rf build
mkdir -p build/site
# clone the aries-site-pub repo
(
cd build/site
git clone --depth 1 git@github.com:apache/aries-site-pub.git .
git rm -r .
)
npm run build-noclean
(
cd build/site
git add .
git commit -m "site build"
git push origin master
)