build(build): update release script

This commit is contained in:
rex-zsd 2020-04-06 15:21:16 +08:00
parent 6edec4aab1
commit e4ae341fed

View File

@ -9,7 +9,7 @@ if [[ $REPLY =~ ^[Yy]$ ]]
then then
# build # build
npm run build:lib npm run build:lib
if [[ `git status --porcelain` ]]; if [[ `git status --porcelain` ]];
then then
git add -A git add -A
git commit -am "build: compile $VERSION" git commit -am "build: compile $VERSION"
@ -19,7 +19,7 @@ then
npm version $VERSION --message "build: release $VERSION" npm version $VERSION --message "build: release $VERSION"
# publish # publish
git push origin dev git push origin 0.x
git push origin refs/tags/v$VERSION git push origin refs/tags/v$VERSION
npm publish npm publish
fi fi