@@ -19712,7 +19712,7 @@ var require_core = __commonJS({
1971219712 return inputs.map((input) => input.trim());
1971319713 }
1971419714 exports2.getMultilineInput = getMultilineInput2;
19715- function getBooleanInput2 (name, options) {
19715+ function getBooleanInput3 (name, options) {
1971619716 const trueValue = ["true", "True", "TRUE"];
1971719717 const falseValue = ["false", "False", "FALSE"];
1971819718 const val = getInput6(name, options);
@@ -19723,7 +19723,7 @@ var require_core = __commonJS({
1972319723 throw new TypeError(`Input does not meet YAML 1.2 "Core Schema" specification: ${name}
1972419724Support boolean input list: \`true | True | TRUE | false | False | FALSE\``);
1972519725 }
19726- exports2.getBooleanInput = getBooleanInput2 ;
19726+ exports2.getBooleanInput = getBooleanInput3 ;
1972719727 function setOutput(name, value) {
1972819728 const filePath = process.env["GITHUB_OUTPUT"] || "";
1972919729 if (filePath) {
@@ -35903,8 +35903,9 @@ var buildComparadiseUrl = () => {
3590335903 const commitHash = (0, import_core3.getInput)("commit-hash");
3590435904 const diffId = (0, import_core3.getInput)("diff-id");
3590535905 const hashParam = commitHash ? `commitHash=${commitHash}` : `diffId=${diffId}`;
35906+ const useBaseImages = (0, import_core3.getBooleanInput)("use-base-images") ?? true;
3590635907 const { owner, repo } = import_github2.context.repo;
35907- return `${comparadiseHost}/?${hashParam}&owner=${owner}&repo=${repo}&bucket=${bucketName}`;
35908+ return `${comparadiseHost}/?${hashParam}&owner=${owner}&repo=${repo}&bucket=${bucketName}&useBaseImages=${useBaseImages} `;
3590835909};
3590935910
3591035911// src/comment.ts
@@ -35996,8 +35997,8 @@ var run = async () => {
3599635997 }
3599735998 const hash = commitHash || diffId;
3599835999 const screenshotsDirectory = (0, import_core6.getInput)("screenshots-directory");
35999- const downloadImages = (0, import_core6.getBooleanInput)("download -base-images") ?? true;
36000- if (downloadImages ) {
36000+ const useBaseImages = (0, import_core6.getBooleanInput)("use -base-images") ?? true;
36001+ if (useBaseImages ) {
3600136002 await downloadBaseImages();
3600236003 }
3600336004 const visualTestExitCode = await Promise.all(
0 commit comments