forked from p96170835/amis
29 lines
497 B
Bash
Executable File
29 lines
497 B
Bash
Executable File
#!/bin/bash
|
|
set -e
|
|
|
|
rm -rf gh-pages
|
|
|
|
echo "Cloning"
|
|
git clone -b gh-pages https://$GH_TOKEN@github.com/baidu/amis.git gh-pages
|
|
|
|
echo "building"
|
|
node ./build/generate-search-data.js
|
|
|
|
fis3 release gh-pages -c
|
|
|
|
node ./build/upload2cdn.js $1 $2
|
|
|
|
echo "pushing"
|
|
|
|
cd gh-pages
|
|
|
|
git config user.email "liaoxuezhi@icloud.com"
|
|
git config user.name "liaoxuezhi"
|
|
|
|
git add .
|
|
git commit --allow-empty -m "自动同步 gh-pages"
|
|
|
|
git push --tags https://$GH_TOKEN@github.com/baidu/amis.git gh-pages
|
|
|
|
echo "done"
|