Skip to content

Commit 35dcf76

Browse files
committed
🔖 3.0.0-beta
1 parent d3e4217 commit 35dcf76

File tree

2 files changed

+3
-7
lines changed

2 files changed

+3
-7
lines changed

.github/workflows/pake-cli.yaml

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -28,9 +28,6 @@ on:
2828
description: '[Height, Optional]'
2929
required: false
3030
default: '780'
31-
safe_domain:
32-
description: '[Safe Domain, Optional]'
33-
required: false
3431
hide_title_bar:
3532
description: '[Hide TitleBar, Optional, MacOS only]'
3633
required: false
@@ -132,7 +129,6 @@ jobs:
132129
RESIZE: ${{ inputs.resize }}
133130
MULTI_ARCH: ${{ inputs.multi_arch }}
134131
TARGETS: ${{ inputs.targets }}
135-
SAFE_DOMAIN: ${{ inputs.safe_domain }}
136132

137133
- name: Upload archive
138134
uses: actions/upload-artifact@v3

dist/cli.js

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -479,10 +479,10 @@ async function mergeConfig(url, options, tauriConf) {
479479
disabled_web_shortcuts: disabledWebShortcuts,
480480
};
481481
Object.assign(tauriConf.pake.windows[0], { url, ...tauriConfWindowOptions });
482-
tauriConf.package.productName = name;
483-
tauriConf.tauri.bundle.identifier = identifier;
482+
tauriConf.productName = name;
483+
tauriConf.identifier = identifier;
484484
if (platform == "win32") {
485-
tauriConf.tauri.bundle.windows.wix.language[0] = installerLanguage;
485+
tauriConf.bundle.windows.wix.language[0] = installerLanguage;
486486
}
487487
//Judge the type of URL, whether it is a file or a website.
488488
const pathExists = await fsExtra.pathExists(url);

0 commit comments

Comments
 (0)