Skip to content

Commit

Permalink
More debug fixes for the upload script (#999)
Browse files Browse the repository at this point in the history
It really would be great if I could test this :(
  • Loading branch information
alexcrichton authored Feb 26, 2020
1 parent 0c23c2e commit 2d268f4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/actions/github-release/main.js
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand Down

0 comments on commit 2d268f4

Please sign in to comment.