-
-
Notifications
You must be signed in to change notification settings - Fork 3.2k
Closed
Labels
platform: Windowspriority: 1 highscope: bundlerThe bundler used in our cli to make installersThe bundler used in our cli to make installerstype: bug
Description
Describe the bug
When bundle > resources contains a map where some of the resources are not binary files, attempting to sign on Windows results in the build failing:
SignTool Error: This file format cannot be signed because it is not recognized.
I believe this is a regression after I recently migrated to latest.
Reproduction
tauri.conf.json should have bundle > resources with something like:
"resources": {
"packaging/README.md": "README.md"
},
bundle > windows should also be configured for proper signing, and for reference, I also am using msi as the bundle target.
Then build the project: npm run tauri build
Expected behavior
Previously, I don't think files listed under the resources map were signed at build time. I think it makes sense that Tauri now attempts to, but it should skip non-binary files.
Full tauri info output
[✔] Environment
- OS: Windows 10.0.26100 x86_64 (X64)
✔ WebView2: 135.0.3179.98
✔ MSVC: Visual Studio Professional 2022
✔ rustc: 1.85.1 (4eb161250 2025-03-15)
✔ cargo: 1.85.1 (d73d2caf9 2024-12-31)
✔ rustup: 1.27.1 (54dd3d00f 2024-04-24)
✔ Rust toolchain: 1.81.0-x86_64-pc-windows-msvc (overridden by 'C:\j\workspace\desktop-app_dwosk_tauri\rust-toolchain.toml')
- node: 23.11.0
- npm: 10.9.2
[-] Packages
- tauri 🦀: 2.5.1
- tauri-build 🦀: 2.2.0
- wry 🦀: 0.51.2
- tao 🦀: 0.33.0
- @tauri-apps/api : not installed!
- @tauri-apps/cli : 2.5.0
[-] Plugins
- tauri-plugin-updater 🦀: 2.7.1
- @tauri-apps/plugin-updater : not installed!
- tauri-plugin-single-instance 🦀: 2.2.3
- @tauri-apps/plugin-single-instance : not installed!
- tauri-plugin-dialog 🦀: 2.2.1
- @tauri-apps/plugin-dialog : not installed!
- tauri-plugin-notification 🦀: 2.2.2
- @tauri-apps/plugin-notification : not installed!
- tauri-plugin-process 🦀: 2.2.1
- @tauri-apps/plugin-process : not installed!
- tauri-plugin-deep-link 🦀: 2.2.1
- @tauri-apps/plugin-deep-link : not installed!
- tauri-plugin-os 🦀: 2.2.1
- @tauri-apps/plugin-os : not installed!
- tauri-plugin-fs 🦀: 2.2.1
- @tauri-apps/plugin-fs : not installed!
[-] App
- build-type: bundle
- CSP: unset
- frontendDist: ../../frontend/build
- devUrl: http://localhost:3000/
Stack trace
Additional context
No response
fredgig, linguofeng, greenhat616, FireSpoonYZ, Phippe and 4 more
Metadata
Metadata
Assignees
Labels
platform: Windowspriority: 1 highscope: bundlerThe bundler used in our cli to make installersThe bundler used in our cli to make installerstype: bug