Fix action input for customBuildSteps
parent
1f12f8c5cc
commit
f2e2a4bc06
|
|
@ -2450,10 +2450,10 @@ class Input {
|
|||
return core.getInput('postBuildSteps');
|
||||
}
|
||||
static get preBuildSteps() {
|
||||
return core.getInput('postBuildSteps');
|
||||
return core.getInput('preBuildSteps');
|
||||
}
|
||||
static get customBuildSteps() {
|
||||
return core.getInput('postBuildSteps');
|
||||
return core.getInput('customBuildSteps');
|
||||
}
|
||||
static get cloudRunnerCluster() {
|
||||
return core.getInput('cloudRunnerCluster') || '';
|
||||
|
|
|
|||
File diff suppressed because one or more lines are too long
|
|
@ -98,11 +98,11 @@ class Input {
|
|||
}
|
||||
|
||||
static get preBuildSteps() {
|
||||
return core.getInput('postBuildSteps');
|
||||
return core.getInput('preBuildSteps');
|
||||
}
|
||||
|
||||
static get customBuildSteps() {
|
||||
return core.getInput('postBuildSteps');
|
||||
return core.getInput('customBuildSteps');
|
||||
}
|
||||
|
||||
static get cloudRunnerCluster() {
|
||||
|
|
|
|||
Loading…
Reference in New Issue