diff --git a/dist/index.js b/dist/index.js index 0de00b8..48c3163 100644 --- a/dist/index.js +++ b/dist/index.js @@ -112527,7 +112527,7 @@ const SHOPIFY_THEME_ROLE = core.getInput('SHOPIFY_THEME_ROLE', { const GITHUB_TOKEN = core.getInput('GITHUB_TOKEN', { required: true, }); -const BUILD_DIR = core.getInput('GITHUB_TOKEN', { +const BUILD_DIR = core.getInput('BUILD_DIR', { required: false, trimWhitespace: true, }) || 'build'; diff --git a/src/inputs.ts b/src/inputs.ts index 753e536..0dbf672 100644 --- a/src/inputs.ts +++ b/src/inputs.ts @@ -54,7 +54,7 @@ export const GITHUB_TOKEN: string = core.getInput('GITHUB_TOKEN', { }); export const BUILD_DIR: string = - core.getInput('GITHUB_TOKEN', { + core.getInput('BUILD_DIR', { required: false, trimWhitespace: true, }) || 'build';