Skip to content

Commit ce7447d

Browse files
committed
perf: build msi first
1 parent f6097be commit ce7447d

File tree

2 files changed

+1
-13
lines changed

2 files changed

+1
-13
lines changed

.github/workflows/build.yml

Lines changed: 0 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -101,17 +101,6 @@ jobs:
101101
run: |
102102
brew install create-dmg
103103
104-
- name: Install WiX Toolset (Windows)
105-
if: matrix.os == 'windows-latest'
106-
run: |
107-
# Download and install WiX Toolset
108-
$wixUrl = "https://github.com/wixtoolset/wix3/releases/download/wix3112rtm/wix311.exe"
109-
$wixInstaller = "$env:TEMP\wix311.exe"
110-
Invoke-WebRequest -Uri $wixUrl -OutFile $wixInstaller
111-
Start-Process -FilePath $wixInstaller -ArgumentList "/quiet" -Wait
112-
# Add WiX to PATH
113-
$wixPath = "${env:ProgramFiles(x86)}\WiX Toolset v3.11\bin"
114-
echo "$wixPath" | Out-File -FilePath $env:GITHUB_PATH -Encoding utf8 -Append
115104
116105
- name: Install Rust
117106
uses: dtolnay/rust-toolchain@stable
@@ -211,7 +200,6 @@ jobs:
211200
latest.json
212201
artifacts/macos-14-app/*.dmg
213202
artifacts/macos-14-app/*.app
214-
artifacts/windows-latest-app/*.exe
215203
artifacts/windows-latest-app/*.msi
216204
env:
217205
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

src-tauri/tauri.conf.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"bundle": {
33
"active": true,
4-
"targets": ["deb", "rpm", "appimage", "dmg", "nsis", "msi"],
4+
"targets": ["dmg", "msi"],
55
"icon": [
66
"icons/icon.ico",
77
"icons/icon.icns"

0 commit comments

Comments
 (0)