Fix action input for customBuildSteps

pull/310/head
Frostebite 2021-09-22 20:31:34 +01:00
parent 1f12f8c5cc
commit f2e2a4bc06
3 changed files with 5 additions and 5 deletions

4
dist/index.js vendored
View File

@ -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') || '';

2
dist/index.js.map vendored

File diff suppressed because one or more lines are too long

View File

@ -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() {