longer retries for package publishing (#3567)

This commit is contained in:
alex 2024-04-23 13:51:42 +01:00 committed by GitHub
parent d29ed933a5
commit fc370d8941
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -172,8 +172,8 @@ export async function publish(distTag?: string) {
} }
}, },
{ {
delay: 4000, delay: 10000,
numAttempts: 20, numAttempts: 50,
} }
) )
} }