From cac65a490d81faa50587f488331c07106e024f2b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E9=99=88=E5=98=89=E6=B6=B5?= Date: Sat, 29 Sep 2018 16:31:45 +0800 Subject: [PATCH] [build] update release.sh --- build/release.sh | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/build/release.sh b/build/release.sh index 2bc1b6ce..7c72a3fd 100644 --- a/build/release.sh +++ b/build/release.sh @@ -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