element/build/release.sh

49 lines
900 B
Bash
Raw Normal View History

2017-10-26 12:50:28 +08:00
git checkout master
git merge dev
2016-11-18 09:21:52 +08:00
#!/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 ..."
# build
VERSION=$VERSION npm run dist
2016-11-01 22:51:03 +08:00
# publish theme
2017-09-28 15:58:08 +08:00
echo "Releasing theme-chalk $VERSION ..."
cd packages/theme-chalk
2016-11-01 22:51:03 +08:00
npm version $VERSION --message "[release] $VERSION"
2017-10-26 12:50:28 +08:00
if [[ $VERSION =~ "beta" ]]
then
npm publish --tag beta
else
npm publish
fi
2016-11-01 22:51:03 +08:00
cd ../..
# commit
git add -A
git commit -m "[build] $VERSION"
npm version $VERSION --message "[release] $VERSION"
# publish
2017-10-26 12:50:28 +08:00
git push eleme master
2016-11-18 09:21:52 +08:00
git push eleme refs/tags/v$VERSION
2017-10-26 12:50:28 +08:00
git checkout dev
git rebase master
git push eleme dev
2016-11-18 09:21:52 +08:00
2017-10-26 12:50:28 +08:00
if [[ $VERSION =~ "beta" ]]
then
npm publish --tag beta
else
npm publish
fi
fi