diff --git a/.changes/fix-ignore-linxdeploy.md b/.changes/fix-ignore-linxdeploy.md new file mode 100644 index 0000000..801b206 --- /dev/null +++ b/.changes/fix-ignore-linxdeploy.md @@ -0,0 +1,5 @@ +--- +"tauri-build": patch +--- + +Ignore the linuxdelpoy.AppImage artifact \ No newline at end of file diff --git a/src/build-project.ts b/src/build-project.ts index 03a9f54..609ddd0 100644 --- a/src/build-project.ts +++ b/src/build-project.ts @@ -62,7 +62,7 @@ export async function buildProject(options: BuildOptions): Promise { ] 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}`)