|
|
@ -219,7 +219,9 @@ async function main() { |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
files = await readReleaseFilesFromLocalDirectory() |
|
|
|
files = await readReleaseFilesFromLocalDirectory() |
|
|
|
files = files.filter((file) => file.endsWith('.zip') || file.endsWith('.dmg') || file.endsWith('.exe') || file.endsWith('.AppImage') || file.endsWith('.snap') || file.endsWith('.deb') || file.startsWith(`latest`)) |
|
|
|
files = files. |
|
|
|
|
|
|
|
filter((file) => file.endsWith('.zip') || file.endsWith('.dmg') || file.endsWith('.exe') || file.endsWith('.AppImage') || file.endsWith('.snap') || file.endsWith('.deb') || file.startsWith(`latest`)) |
|
|
|
|
|
|
|
.filter((file) => !file.startsWith('._')) |
|
|
|
console.log(`Found ${files.length} files to upload`) |
|
|
|
console.log(`Found ${files.length} files to upload`) |
|
|
|
console.log(files) |
|
|
|
console.log(files) |
|
|
|
if (!release.draft) { |
|
|
|
if (!release.draft) { |
|
|
|