Skip to content

Commit

Permalink
[ci] Don't auto push to latest tag (#31284)
Browse files Browse the repository at this point in the history
By default let's stop pushing to the latest tag now that we have a
non-experimental release.
  • Loading branch information
poteto authored Oct 18, 2024
1 parent 25cac22 commit 1ce58dd
Showing 1 changed file with 1 addition and 8 deletions.
9 changes: 1 addition & 8 deletions compiler/scripts/release/publish.js
Original file line number Diff line number Diff line change
Expand Up @@ -166,14 +166,7 @@ async function main() {
try {
await spawnHelper(
'npm',
[
'publish',
...opts,
'--registry=https://registry.npmjs.org',
// For now, since the compiler is experimental only, to simplify installation we push
// to the `latest` tag
'--tag=latest',
],
['publish', ...opts, '--registry=https://registry.npmjs.org'],
{
cwd: pkgDir,
stdio: 'inherit',
Expand Down

0 comments on commit 1ce58dd

Please sign in to comment.