From 8537e58734c57b783f61bb97921add9fa2763dc6 Mon Sep 17 00:00:00 2001 From: Frank Jogeleit Date: Sat, 6 Apr 2024 13:22:18 +0200 Subject: [PATCH] fix retryWait mapping Signed-off-by: Frank Jogeleit --- dist/index.js | 2 +- src/index.js | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) 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') || '{}';