Fix bug where run attempt was reported as run ID (#1661)
This commit is contained in:
parent
dcf71cf79b
commit
8b12d99ee5
3 changed files with 3 additions and 3 deletions
|
|
@ -331,7 +331,7 @@ export function getWorkflowRunID(): number {
|
|||
* Get the workflow run attempt number.
|
||||
*/
|
||||
export function getWorkflowRunAttempt(): number {
|
||||
const workflowRunAttemptString = getRequiredEnvParam("GITHUB_RUN_ID");
|
||||
const workflowRunAttemptString = getRequiredEnvParam("GITHUB_RUN_ATTEMPT");
|
||||
const workflowRunAttempt = parseInt(workflowRunAttemptString, 10);
|
||||
if (Number.isNaN(workflowRunAttempt)) {
|
||||
throw new Error(
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue