diff --git a/dist/index.js b/dist/index.js index b369c4a..cef00e1 100644 --- a/dist/index.js +++ b/dist/index.js @@ -34017,7 +34017,7 @@ if (!!core.getInput('retry')) { let retryWait = 3000 if (!!core.getInput('retryWait')) { - retry = parseInt(core.getInput('retryWait')) + retryWait = parseInt(core.getInput('retryWait')) } const data = core.getInput('data') || '{}'; diff --git a/src/index.js b/src/index.js index fce7bd4..cdd66f1 100644 --- a/src/index.js +++ b/src/index.js @@ -58,7 +58,7 @@ if (!!core.getInput('retry')) { let retryWait = 3000 if (!!core.getInput('retryWait')) { - retry = parseInt(core.getInput('retryWait')) + retryWait = parseInt(core.getInput('retryWait')) } const data = core.getInput('data') || '{}';