chore: update release.sh (#2090)

This commit is contained in:
neverland 2019-09-24 14:20:39 +08:00 committed by GitHub
parent 89bcab7b09
commit 26f2b77538
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -24,7 +24,13 @@ then
# publish
git push origin master
git push origin refs/tags/v$VERSION
npm publish
if [[ $VERSION =~ [beta] ]]
then
npm publish --tag beta
else
npm publish
fi
# sync dev
git checkout dev