blob: a6ef2fe009f20785eb9c440d2d1215bb4ff24e9a [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"
)