Ensure hidden files input is used

This commit is contained in:
Josh Gross 2024-09-02 12:34:51 -04:00
parent 9ee08a3b00
commit 87b9624c21
No known key found for this signature in database
2 changed files with 5 additions and 2 deletions

2
dist/index.js vendored
View file

@ -11091,7 +11091,7 @@ function run() {
return __awaiter(this, void 0, void 0, function* () {
try {
const inputs = (0, input_helper_1.getInputs)();
const searchResult = yield (0, search_1.findFilesToUpload)(inputs.searchPath);
const searchResult = yield (0, search_1.findFilesToUpload)(inputs.searchPath, inputs.includeHiddenFiles);
if (searchResult.filesToUpload.length === 0) {
// No files were found, different use cases warrant different types of behavior if nothing is found
switch (inputs.ifNoFilesFound) {