Skip to content

Commit

Permalink
Merge pull request #173 from grafikr/fix-input
Browse files Browse the repository at this point in the history
Fix input
  • Loading branch information
andershagbard authored Oct 7, 2024
2 parents aaac841 + e56cea9 commit e72c2c8
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion dist/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -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';
Expand Down
2 changes: 1 addition & 1 deletion src/inputs.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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';

0 comments on commit e72c2c8

Please sign in to comment.