build: no longer push to master

This commit is contained in:
chenjiahan 2021-08-11 09:53:01 +08:00
parent cdd1fc3a7b
commit c948002445

View File

@ -1,6 +1,3 @@
git checkout master
git merge dev
#!/usr/bin/env sh
set -e
echo "Enter release version: "
@ -19,10 +16,10 @@ then
fi
# commit
npm version $VERSION --message "build: release $VERSION"
npm version $VERSION --message "release: $VERSION"
# publish
git push origin master
git push origin dev
git push origin refs/tags/v$VERSION
if [[ $VERSION =~ [beta] ]]
@ -32,11 +29,6 @@ then
npm publish
fi
# sync dev
git checkout dev
git rebase master
git push origin dev
# changelog
vant-cli changelog
fi