Skip to content

Commit 3c4818f

Browse files
authored
[ci] wait 5m on publish to yarn register before timing out (#18830)
This times out in 100 seconds, and is causing failures for builds in main. Maybe it needs more time.
1 parent ac8d3e2 commit 3c4818f

File tree

1 file changed

+13
-1
lines changed

1 file changed

+13
-1
lines changed

components/gitpod-protocol/scripts/publish.js

+13-1
Original file line numberDiff line numberDiff line change
@@ -36,6 +36,18 @@ fs.writeFileSync(path.join(pckDir, "package.json"), JSON.stringify(pck, undefine
3636
const tag = qualifier.substr(0, qualifier.lastIndexOf("."));
3737

3838
child_process.execSync(
39-
["yarn", "--cwd", pckDir, "publish", "--tag", tag, "--access", "public", "--ignore-scripts", "--network-timeout", "100000"].join(" "),
39+
[
40+
"yarn",
41+
"--cwd",
42+
pckDir,
43+
"publish",
44+
"--tag",
45+
tag,
46+
"--access",
47+
"public",
48+
"--ignore-scripts",
49+
"--network-timeout",
50+
"300000",
51+
].join(" "),
4052
{ stdio: "inherit" },
4153
);

0 commit comments

Comments
 (0)