Skip to content

Commit

Permalink
Remove varible GITHUB_OUTPUT from execution
Browse files Browse the repository at this point in the history
  • Loading branch information
dmvict committed May 10, 2024
1 parent 47baebb commit 6d5e72b
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 0 deletions.
6 changes: 6 additions & 0 deletions test/Action.test.s
Original file line number Diff line number Diff line change
Expand Up @@ -1681,6 +1681,12 @@ function retryDockerTrivialAction( test )
return null;
});

a.ready.finally( () =>
{
delete process.env.GITHUB_OUTPUT;
return null;
});

/* - */

return a.ready;
Expand Down
7 changes: 7 additions & 0 deletions test/Command.test.s
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,7 @@ function onRoutineBegin()
delete process.env.INPUT_WITH;
delete process.env.INPUT_ATTEMPT_DELAY;
delete process.env.INPUT_RETRY_CONDITION;
delete process.env.GITHUB_OUTPUT;
}

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

a.ready.finally( () =>
{
delete process.env.GITHUB_OUTPUT;
return null;
});

/* - */

return a.ready;
Expand Down

0 comments on commit 6d5e72b

Please sign in to comment.