We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7775da2 commit bc034d3Copy full SHA for bc034d3
build/release.sh
@@ -29,12 +29,20 @@ if [[ $REPLY =~ ^[Yy]$ ]]; then
29
# update packages
30
cd packages/vue-template-compiler
31
npm version $VERSION
32
- npm publish
+ if [[ -z $RELEASE_TAG ]]; then
33
+ npm publish --tag $RELEASE_TAG
34
+ else
35
+ npm publish
36
+ fi
37
cd -
38
39
cd packages/vue-server-renderer
40
41
42
43
44
45
46
47
48
# commit
0 commit comments