Skip to content

Commit

Permalink
Remove varible INPUT_RETRY_CONDITION from execution
Browse files Browse the repository at this point in the history
  • Loading branch information
dmvict committed May 10, 2024
1 parent 348b8fd commit 47baebb
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions test/Command.test.s
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,7 @@ function onRoutineBegin()
delete process.env.INPUT_ATTEMPT_LIMIT;
delete process.env.INPUT_WITH;
delete process.env.INPUT_ATTEMPT_DELAY;
delete process.env.INPUT_RETRY_CONDITION;
}

//
Expand Down Expand Up @@ -529,6 +530,12 @@ function retryWithOptionRetryConditionAndCheckOfStepOutput( test )
return null;
});

a.ready.finally( () =>
{
core.exportVariable( `INPUT_RETRY_CONDITION`, true );
return null;
});

/* - */

return a.ready;
Expand Down

0 comments on commit 47baebb

Please sign in to comment.