Commit 7b40188
fix(updater): include app target so updater artifacts are produced
`bundle.targets: "dmg"` alone made the DMG bundler run an embedded
`.app` build, but the updater post-processor at `crates/tauri-bundler/
src/bundle.rs:207-220` only walks the user-specified `package_types`
list and matches strictly on `PackageType::MacOsBundle` (= the "app"
target). Without "app" in targets, no `.app.tar.gz` / `.sig` ever
gets written under `bundle/macos/`, which is what tripped the v0.16.0
release job ("No files were found with the provided path").
Adding "app" to the array makes Tauri produce both the standalone
`.app` bundle (and its tar.gz + sig) and the DMG, satisfying the two
upload-artifact steps without other side effects.
Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>1 parent 9a01245 commit 7b40188
1 file changed
Lines changed: 1 addition & 1 deletion
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
16 | 16 | | |
17 | 17 | | |
18 | 18 | | |
19 | | - | |
| 19 | + | |
20 | 20 | | |
21 | 21 | | |
22 | 22 | | |
| |||
0 commit comments