We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 848e7e4 commit a8bd1deCopy full SHA for a8bd1de
1 file changed
src-build/createDistTestReleaseConfig.js
@@ -25,11 +25,11 @@ async function createDistTestReleaseConfig() {
25
const phoenixVersion = configJson.package.version;
26
if(os.platform() === 'win32'){
27
configJson.tauri.windows[0].url = `https://phtauri.localhost/v${phoenixVersion}/`;
28
- // for test windows, desktop-metrics.html isn't needed
29
} else {
30
configJson.tauri.windows[0].url = `phtauri://localhost/v${phoenixVersion}/`;
31
32
}
+ // for tests we only need the main window. other windows seems to be breaking tests in github actions.
+ configJson.tauri.windows = [configJson.tauri.windows[0]];
33
if(os.platform() === 'darwin'){
34
// inject macos icons
35
configJson.tauri.bundle.icon = [
0 commit comments