Skip to content
This repository was archived by the owner on Sep 19, 2025. It is now read-only.

Commit b3dfe4f

Browse files
Log out nightly flag
1 parent 2876161 commit b3dfe4f

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

build-scripts/publish.js

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,8 @@ async function publishPackagesIfNeeded(packageInfo) {
6262
}
6363
console.log('Publishing', pkgJson.name, pkgJson.version);
6464
const publishArgs = ['-w', pkgJson.name, 'publish'];
65-
if (process.env.COMPILER_NIGHTLY ) {
65+
console.log('Is nightly version:', Boolean(process.env.COMPILER_NIGHTLY), process.env.COMPILER_NIGHTLY);
66+
if (process.env.COMPILER_NIGHTLY) {
6667
publishArgs.push('--tag', 'nightly');
6768
}
6869
await runCommand('npm', publishArgs);

0 commit comments

Comments
 (0)