mirror of https://github.com/ElemeFE/element
Deploy-ci: fix shell
parent
c7fad7c2ac
commit
87b9c43ff2
|
@ -1,13 +1,13 @@
|
|||
#! /bin/sh
|
||||
mkdir temp_web
|
||||
git config user.name "element_bot"
|
||||
git config user.email "element_bot"
|
||||
|
||||
# build dev site
|
||||
if [ "$TRAVIS_BRANCH" = "master" ] && [ "$GH_TOKEN" ]; then
|
||||
CI_ENV=/dev/ ./node_modules/.bin/cooking build -c build/cooking.demo.js
|
||||
cd temp_web
|
||||
git clone https://$GH_TOKEN@github.com/ElementUI/dev.git && cd dev
|
||||
git config user.name "element_bot"
|
||||
git config user.email "element_bot"
|
||||
rm -rf *
|
||||
cp -rf ../../examples/element-ui/** .
|
||||
git add -A .
|
||||
|
@ -21,6 +21,8 @@ if [ "$TRAVIS_TAG" ] && [ "$GH_TOKEN" ]; then
|
|||
npm run dist
|
||||
cd temp_web
|
||||
git clone https://$GH_TOKEN@github.com/ElementUI/lib.git && cd lib
|
||||
git config user.name "element_bot"
|
||||
git config user.email "element_bot"
|
||||
rm -rf *
|
||||
cp -rf ../../lib/** .
|
||||
git add -A .
|
||||
|
@ -35,6 +37,8 @@ if [ "$TRAVIS_TAG" ] && [ "$GH_TOKEN" ]; then
|
|||
npm run deploy
|
||||
cd temp_web
|
||||
git clone https://$GH_TOKEN@github.com/ElemeFE/element.git && cd element
|
||||
git config user.name "element_bot"
|
||||
git config user.email "element_bot"
|
||||
git checkout gh-pages
|
||||
rm -rf *
|
||||
cp -rf ../../examples/element-ui/** .
|
||||
|
|
Loading…
Reference in New Issue