Skip to content

Commit 7c6386c

Browse files
committed
workflow: remove next tag in release script
1 parent 334112c commit 7c6386c

File tree

1 file changed

+0
-5
lines changed

1 file changed

+0
-5
lines changed

scripts/release.js

-5
Original file line numberDiff line numberDiff line change
@@ -188,8 +188,6 @@ async function publishPackage(pkgName, version, runIfNotDry) {
188188
return
189189
}
190190

191-
// For now, all 3.x packages except "vue" can be published as
192-
// `latest`, whereas "vue" will be published under the "next" tag.
193191
let releaseTag = null
194192
if (args.tag) {
195193
releaseTag = args.tag
@@ -199,9 +197,6 @@ async function publishPackage(pkgName, version, runIfNotDry) {
199197
releaseTag = 'beta'
200198
} else if (version.includes('rc')) {
201199
releaseTag = 'rc'
202-
} else if (pkgName === 'vue') {
203-
// TODO remove when 3.x becomes default
204-
releaseTag = 'next'
205200
}
206201

207202
// TODO use inferred release channel after official 3.0 release

0 commit comments

Comments
 (0)