Skip to content

Commit 66dd51c

Browse files
ci: fix the release github workflow
This workflow was failing whenever there was a minor release to wrangler and a patch release to a package that depended upon wrangler. It was caused by a bug in npm that was resolved in v8.5.0. See npm/cli#4379 and npm/cli#4371. The error looks like: `No matching version found for wrangler@^2.15.0.`
1 parent ccae0e4 commit 66dd51c

File tree

1 file changed

+10
-1
lines changed

1 file changed

+10
-1
lines changed

.github/changeset-version.js

+10-1
Original file line numberDiff line numberDiff line change
@@ -6,4 +6,13 @@ const { execSync } = require("node:child_process");
66
// This is a workaround until this is handled automatically by `changeset version`.
77
// See https://github.com/changesets/changesets/issues/421.
88
execSync("npx changeset version");
9-
execSync("npm install --package-lock-only");
9+
10+
// HACK: run a newer version of npm that can update package-lock.json using local dependencies.
11+
// See https://github.com/npm/cli/issues/4379 and https://github.com/npm/cli/pull/4371.
12+
// The error looks like: `No matching version found for wrangler@^2.15.0.`
13+
if (!process.version.startsWith("v16")) {
14+
throw new Error(
15+
"You have updated node version and so you must now remove the hack below!"
16+
);
17+
}
18+
execSync("npx -y [email protected] install --package-lock-only");

0 commit comments

Comments
 (0)