Skip to content

Commit 047333c

Browse files
Update uploader.js
1 parent 3e357b3 commit 047333c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

scripts/uploader.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -137,7 +137,7 @@ function findFilesToUpload(directory) {
137137
files.push({ path: fullPath, type: 'windows-installer' });
138138
} else if (item.name.endsWith('.zip') && item.name.includes('Portable')) {
139139
files.push({ path: fullPath, type: 'windows-portable' });
140-
} else if (item.name === 'Sploder-macOS.zip') {
140+
} else if (item.name.startsWith('Sploder-macOS-') && item.name.endsWith('.zip')) {
141141
files.push({ path: fullPath, type: 'macos-app' });
142142
}
143143
}

0 commit comments

Comments
 (0)