fix retryWait mapping

Signed-off-by: Frank Jogeleit <frank.jogeleit@lovoo.com>
This commit is contained in:
Frank Jogeleit 2024-04-06 13:22:18 +02:00
parent 74e0e96181
commit 8537e58734
2 changed files with 2 additions and 2 deletions

2
dist/index.js vendored
View file

@ -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') || '{}';

View file

@ -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') || '{}';