This repository has been archived on 2022-01-02. You can view files and clone it, but cannot push or open issues or pull requests.
AriaNg/scripts/publish_dailybuild.sh
2016-08-08 23:08:51 +08:00

38 lines
927 B
Bash

if [ $CI == "true" ] && [ $CIRCLE_BRANCH == "master" ]; then
echo "Packaging daily build...";
cd dist;
zip $CIRCLE_ARTIFACTS/dist.zip * -r -9;
cd ..;
echo "Publishing online demo...";
cp dist $CIRCLE_ARTIFACTS/ -r;
cp README.md $CIRCLE_ARTIFACTS/;
cp LICENSE $CIRCLE_ARTIFACTS/;
git config --global user.name "CircleCI";
git config --global user.email "CircleCI";
git checkout -b gh-pages remotes/origin/gh-pages;
rm -rf css;
rm -rf fonts;
rm -rf js;
rm -rf langs;
rm -rf imgs;
rm -f downloads/latest_daily_build.zip;
rm -f index.html;
rm -f index.manifest;
rm -f README.md;
rm -f LICENSE;
cp $CIRCLE_ARTIFACTS/dist/* ./ -r;
mv $CIRCLE_ARTIFACTS/dist.zip ./downloads/latest_daily_build.zip;
mv $CIRCLE_ARTIFACTS/README.md ./;
mv $CIRCLE_ARTIFACTS/LICENSE ./;
git add -A;
git commit -a -m "daily build #$CIRCLE_SHA1";
git push origin gh-pages;
echo "Done. ";
fi