mirror of
https://gitee.com/vant-contrib/vant-weapp.git
synced 2025-04-05 19:41:45 +08:00
[build] update release.sh
This commit is contained in:
parent
aa7a6f59ae
commit
cac65a490d
@ -10,13 +10,19 @@ read -p "Releasing $VERSION - are you sure? (y/n)" -n 1 -r
|
|||||||
echo # (optional) move to a new line
|
echo # (optional) move to a new line
|
||||||
if [[ $REPLY =~ ^[Yy]$ ]]
|
if [[ $REPLY =~ ^[Yy]$ ]]
|
||||||
then
|
then
|
||||||
|
# build
|
||||||
|
npm run build:lib
|
||||||
|
if [[ `git status --porcelain` ]];
|
||||||
|
then
|
||||||
|
git commit -am "[build] $VERSION"
|
||||||
|
fi
|
||||||
|
|
||||||
# commit
|
# commit
|
||||||
npm version $VERSION --message "[release] $VERSION"
|
npm version $VERSION --message "[release] $VERSION"
|
||||||
|
|
||||||
# publish
|
# publish
|
||||||
git push origin master
|
git push origin master
|
||||||
git push origin refs/tags/v$VERSION
|
git push origin refs/tags/v$VERSION
|
||||||
|
|
||||||
npm publish
|
npm publish
|
||||||
|
|
||||||
# sync dev
|
# sync dev
|
||||||
|
Loading…
x
Reference in New Issue
Block a user