diff --git a/scripts/publish-native.js b/scripts/publish-native.js index 8562c443e438a..6d91e36941e66 100755 --- a/scripts/publish-native.js +++ b/scripts/publish-native.js @@ -49,9 +49,7 @@ const cwd = process.cwd() `${path.join(nativePackagesDir, platform)}`, `--access`, `public`, - ...(version.includes('canary') - ? ['--tag', 'canary'] - : ['--tag', '14-2-1']), + ...(version.includes('canary') ? ['--tag', 'canary'] : []), ], { stdio: 'inherit' } ) diff --git a/scripts/publish-release.js b/scripts/publish-release.js index 72d40b01e6cc0..943174990303f 100755 --- a/scripts/publish-release.js +++ b/scripts/publish-release.js @@ -53,7 +53,7 @@ const cwd = process.cwd() '--access', 'public', '--ignore-scripts', - ...(isCanary ? ['--tag', 'canary'] : ['--tag', '14-2-1']), + ...(isCanary ? ['--tag', 'canary'] : []), ], { stdio: 'pipe' } )