[build] update release.sh

This commit is contained in:
陈嘉涵 2018-09-29 16:31:45 +08:00
parent aa7a6f59ae
commit cac65a490d

View File

@ -10,13 +10,19 @@ read -p "Releasing $VERSION - are you sure? (y/n)" -n 1 -r
echo # (optional) move to a new line
if [[ $REPLY =~ ^[Yy]$ ]]
then
# build
npm run build:lib
if [[ `git status --porcelain` ]];
then
git commit -am "[build] $VERSION"
fi
# commit
npm version $VERSION --message "[release] $VERSION"
# publish
git push origin master
git push origin refs/tags/v$VERSION
npm publish
# sync dev