fix: ignore linuxdeploy

This commit is contained in:
Jonas Kruckenberg 2022-05-09 14:50:30 +02:00
parent a09828ac1b
commit af44d01e26
No known key found for this signature in database
GPG Key ID: 21AD3B3C266BDE3D
2 changed files with 6 additions and 1 deletions

View File

@ -0,0 +1,5 @@
---
"tauri-build": patch
---
Ignore the linuxdelpoy.AppImage artifact

View File

@ -62,7 +62,7 @@ export async function buildProject(options: BuildOptions): Promise<string[]> {
]
const windowsExts = ['msi', 'msi.zip', 'msi.zip.sig']
const artifactsLookupPattern = `${bundleDir}/*/*.{${[...macOSExts, linuxExts, windowsExts].join(',')}}`
const artifactsLookupPattern = `${bundleDir}/*/!(linuxdeploy)*.{${[...macOSExts, linuxExts, windowsExts].join(',')}}`
core.debug(`Looking for artifacts using this pattern: ${artifactsLookupPattern}`)