Skip to content

Commit

Permalink
workflow: remove next tag in release script
Browse files Browse the repository at this point in the history
  • Loading branch information
yyx990803 committed Feb 7, 2022
1 parent 334112c commit 7c6386c
Showing 1 changed file with 0 additions and 5 deletions.
5 changes: 0 additions & 5 deletions scripts/release.js
Expand Up @@ -188,8 +188,6 @@ async function publishPackage(pkgName, version, runIfNotDry) {
return
}

// For now, all 3.x packages except "vue" can be published as
// `latest`, whereas "vue" will be published under the "next" tag.
let releaseTag = null
if (args.tag) {
releaseTag = args.tag
Expand All @@ -199,9 +197,6 @@ async function publishPackage(pkgName, version, runIfNotDry) {
releaseTag = 'beta'
} else if (version.includes('rc')) {
releaseTag = 'rc'
} else if (pkgName === 'vue') {
// TODO remove when 3.x becomes default
releaseTag = 'next'
}

// TODO use inferred release channel after official 3.0 release
Expand Down

0 comments on commit 7c6386c

Please sign in to comment.