We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d82e5ab commit 05c7587Copy full SHA for 05c7587
.github/workflows/build.yml
@@ -68,7 +68,7 @@ jobs:
68
if: matrix.os == 'ubuntu-latest'
69
run: |
70
# Build only the binary without bundling for Linux
71
- npm run tauri build -- --target ${{ matrix.target }} --bundles none
+ npm run tauri build -- --target ${{ matrix.target }}
72
73
- name: Build Tauri app (macOS with target)
74
if: startsWith(matrix.os, 'macos')
scripts/build-linux-tarball.sh
@@ -13,7 +13,7 @@ npm run build
13
14
# Build the Tauri app without bundling
15
echo "🦀 Building Rust binary..."
16
-npm run tauri build -- --bundles none
+npm run tauri build
17
18
# Detect the target architecture
19
if [[ $(uname -m) == "x86_64" ]]; then
0 commit comments