diff options
author | David Sherret <dsherret@users.noreply.github.com> | 2021-09-15 09:16:06 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-09-15 09:16:06 -0400 |
commit | 4283e2907e13a089fa2d026c92e074f019550880 (patch) | |
tree | c27bb27881ed30edb015b415dd0696c18bdf593a /tools/release/helpers/deno_workspace.ts | |
parent | badc87e657f61c522fcf149f23f9a0204c35714f (diff) |
chore(scripts): improvements to the release scripts based on the 1.14 release (#12079)
Diffstat (limited to 'tools/release/helpers/deno_workspace.ts')
-rw-r--r-- | tools/release/helpers/deno_workspace.ts | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/tools/release/helpers/deno_workspace.ts b/tools/release/helpers/deno_workspace.ts index 169394af9..802063b62 100644 --- a/tools/release/helpers/deno_workspace.ts +++ b/tools/release/helpers/deno_workspace.ts @@ -141,15 +141,15 @@ export class DenoWorkspaceCrate { console.log(`Publishing ${this.name} ${this.version}...`); - // Sometimes a publish may fail due to local caching issues. - // Usually it will fix itself after retrying so try a few - // times before failing hard. + // Sometimes a publish may fail due to the crates.io index + // not being updated yet. Usually it will be resolved after + // retrying, so try a few times before failing hard. return await withRetries({ action: async () => { await cargo.publishCrate(this.directoryPath); return true; }, - retryCount: 3, + retryCount: 5, retryDelaySeconds: 10, }); } |