From 2d268f49c9a54be7daf5541d238779fb4588a967 Mon Sep 17 00:00:00 2001 From: Alex Crichton Date: Wed, 26 Feb 2020 15:33:18 -0600 Subject: [PATCH] More debug fixes for the upload script (#999) It really would be great if I could test this :( --- .github/actions/github-release/main.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/actions/github-release/main.js b/.github/actions/github-release/main.js index cd2f3bd734..d2afa35fa9 100644 --- a/.github/actions/github-release/main.js +++ b/.github/actions/github-release/main.js @@ -92,7 +92,7 @@ async function run() { const retries = 10; for (let i = 0; i < retries; i++) { try { - runOnce(); + await runOnce(); break; } catch (e) { if (i === retries - 1)