Revert "triggerWorkflowOnComplete param for cloud runner"

This reverts commit 00c5685d03.
This commit is contained in:
Frostebite
2023-02-05 00:22:32 +00:00
parent 00c5685d03
commit 28147e5e1b
21 changed files with 87 additions and 242 deletions

View File

@@ -64,8 +64,8 @@ class Input {
static get gitSha() {
if (Input.getInput(`GITHUB_SHA`)) {
return Input.getInput(`GITHUB_SHA`);
} else if (Input.getInput(`GitSha`)) {
return Input.getInput(`GitSha`);
} else if (Input.getInput(`GitSHA`)) {
return Input.getInput(`GitSHA`);
}
}
@@ -74,7 +74,7 @@ class Input {
}
static get runNumber() {
return Input.getInput('GITHUB_RUN_NUMBER') || Input.getInput('runNumber') || '0';
return Input.getInput('GITHUB_RUN_NUMBER') || '0';
}
static get targetPlatform() {
@@ -168,7 +168,7 @@ class Input {
}
static get gitPrivateToken() {
return Input.getInput('gitPrivateToken') || false;
return core.getInput('gitPrivateToken') || false;
}
static get chownFilesTo() {