workflow: remove yarn usage in release script

This commit is contained in:
Evan You 2023-04-08 13:28:55 +08:00
parent e4a2d11f82
commit 32b91dbd87
1 changed files with 3 additions and 5 deletions

View File

@ -346,18 +346,16 @@ async function publishPackage(pkgName, version) {
step(`Publishing ${pkgName}...`)
try {
await runIfNotDry(
await run(
// note: use of yarn is intentional here as we rely on its publishing
// behavior.
'yarn',
'npm',
[
'publish',
'--new-version',
version,
...(releaseTag ? ['--tag', releaseTag] : []),
'--access',
'public',
...(skipGit ? ['--no-commit-hooks', '--no-git-tag-version'] : [])
...(isDryRun ? ['--dry-run'] : [])
],
{
cwd: pkgRoot,