Skip to content

Commit d9ac26c

Browse files
authored
ci: Ensure npm version is current (#11180)
### Description More #11173 follow-up
1 parent ec73eee commit d9ac26c

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

packages/turbo-releaser/src/packager.ts

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
import { execSync } from "node:child_process";
12
import type { Platform } from "./types";
23
import operations from "./operations";
34

@@ -28,6 +29,7 @@ export async function packAndPublish({
2829

2930
if (!skipPublish) {
3031
console.log("Publishing artifacts...");
32+
execSync("npm --version");
3133
operations.publishArtifacts(artifacts, npmTag);
3234
} else {
3335
console.log("Skipping publish step.");

0 commit comments

Comments
 (0)