Do not checkout with git sha if undefined
parent
36ecc47c3c
commit
2243b80312
|
@ -7193,7 +7193,7 @@ class Input {
|
|||
return Input.getInput(`useIL2Cpp`) || true;
|
||||
}
|
||||
static get runNumber() {
|
||||
return Input.getInput('GITHUB_RUN_NUMBER') || '0';
|
||||
return Input.getInput('GITHUB_RUN_NUMBER') || Input.getInput('runNumber') || '0';
|
||||
}
|
||||
static get targetPlatform() {
|
||||
return Input.getInput('targetPlatform') || platform_1.default.default;
|
||||
|
|
File diff suppressed because one or more lines are too long
|
@ -74,7 +74,7 @@ class Input {
|
|||
}
|
||||
|
||||
static get runNumber() {
|
||||
return Input.getInput('GITHUB_RUN_NUMBER') || '0';
|
||||
return Input.getInput('GITHUB_RUN_NUMBER') || Input.getInput('runNumber') || '0';
|
||||
}
|
||||
|
||||
static get targetPlatform() {
|
||||
|
|
Loading…
Reference in New Issue