mirror of
https://gitee.com/vant-contrib/vant-weapp.git
synced 2025-04-06 03:58:05 +08:00
25 lines
461 B
Bash
25 lines
461 B
Bash
git checkout master
|
|
|
|
#!/usr/bin/env sh
|
|
set -e
|
|
echo "Enter release version: "
|
|
read VERSION
|
|
|
|
read -p "Releasing $VERSION - are you sure? (y/n)" -n 1 -r
|
|
echo # (optional) move to a new line
|
|
if [[ $REPLY =~ ^[Yy]$ ]]
|
|
then
|
|
echo "Releasing $VERSION ..."
|
|
|
|
# commit
|
|
npm version $VERSION --message "[release] $VERSION"
|
|
git add -A
|
|
git commit -m "[build] $VERSION"
|
|
|
|
# publish
|
|
git push origin master
|
|
git push origin refs/tags/v$VERSION
|
|
|
|
npm publish
|
|
fi
|