vant/build/release.sh
2019-09-30 09:57:14 +08:00

24 lines
468 B
Bash

#!/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
# build
npm version $VERSION --no-git-tag-version
VERSION=$VERSION npm run build:lib
# commit
git tag v$VERSION
git commit -am "[release] $VERSION"
# publish
git push origin 1.x
git push origin refs/tags/v$VERSION
npm publish --tag latest-v1
fi