From eff2d288c97cc69f3452a4f6ea4028b23ba77d64 Mon Sep 17 00:00:00 2001 From: Brian Cristante <33549821+brcrista@users.noreply.github.com> Date: Wed, 16 Jun 2021 10:51:44 -0400 Subject: [PATCH] npm run release --- dist/index.js | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/dist/index.js b/dist/index.js index 343b4bf..1837061 100644 --- a/dist/index.js +++ b/dist/index.js @@ -4051,7 +4051,7 @@ function run() { core.info(`With the provided path, there will be ${searchResult.filesToUpload.length} file${s} uploaded`); core.debug(`Root artifact directory is ${searchResult.rootDirectory}`); if (searchResult.filesToUpload.length > 10000) { - core.warning(`There are over 10,000 files in this artifact, consider create an archive before upload to improve the upload performance.`); + core.warning(`There are over 10,000 files in this artifact, consider creating an archive before upload to improve the upload performance.`); } const artifactClient = artifact_1.create(); const options = { @@ -8190,8 +8190,9 @@ function isRetryableStatusCode(statusCode) { } const retryableStatusCodes = [ http_client_1.HttpCodes.BadGateway, - http_client_1.HttpCodes.ServiceUnavailable, http_client_1.HttpCodes.GatewayTimeout, + http_client_1.HttpCodes.InternalServerError, + http_client_1.HttpCodes.ServiceUnavailable, http_client_1.HttpCodes.TooManyRequests, 413 // Payload Too Large ];