Commit 503ba106 authored by techird's avatar techird

update publish script

parent 54a15807
echo -e "\033[0;33;1mPublish start." echo -e "\033[0;33;1mPublish start."
echo -e "\033[0;33;1m > Checking out gh-pages\033[0m" echo -e "\033[0;33;1m> Checking out gh-pages\033[0m"
git checkout -q gh-pages git checkout -q gh-pages
echo -e "\033[0;33;1m > Merging dev commits\033[0m" echo -e "\033[0;33;1m> Merging dev commits\033[0m"
git merge dev -qm "merge from dev" git merge dev -qm "merge from dev"
echo -e "\033[0;33;1m > Building dist js files\033[0m" echo -e "\033[0;33;1m> Building dist js files\033[0m"
grunt -q > GRUNT_OUTPUT grunt -q > GRUNT_OUTPUT
rm -f GRUNT_OUTPUT rm -f GRUNT_OUTPUT
git add dist git add dist
echo -e "\033[0;33;1m > Commit dist js files\033[0m" echo -e "\033[0;33;1m> Commit dist js files\033[0m"
git commit -qm "publish" git commit -qm "publish"
echo -e "\033[0;33;1m > Pusing to git...\033[0m" echo -e "\033[0;33;1m> Pusing to git...\033[0m"
git push origin gh-pages git push -q origin gh-pages
git checkout -q dev git checkout -q dev
echo -e "\033[0;33;1mPublish done.\033[0m" echo -e "\033[0;33;1mPublish done.\033[0m"
\ No newline at end of file
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment