@samitouri / QOS-React-1 / commits / 1ce58ddd67

[ci] Don't auto push to latest tag (#31284)

By default let's stop pushing to the latest tag now that we have a non-experimental release.

lauren committed Oct 18, 2024 at 00:20 UTC 1ce58ddd672ea67631bc52e85be32962b24df6ae
1 file changed +1 -8
compiler/scripts/release/publish.js
+1 -8
@@ -166,14 +166,7 @@ async function main() {
166 try {
167 await spawnHelper(
168 'npm',
169 - [
170 - 'publish',
171 - ...opts,
172 - '--registry=https://registry.npmjs.org',
173 - // For now, since the compiler is experimental only, to simplify installation we push
174 - // to the `latest` tag
175 - '--tag=latest',
176 - ],
169 + ['publish', ...opts, '--registry=https://registry.npmjs.org'],
170 {
171 cwd: pkgDir,
172 stdio: 'inherit',