Skip to content

Commit 84830ad

Browse files
committed
fix: release notarization flow and app naming; bump to 3.9.1
1 parent eecca7f commit 84830ad

5 files changed

Lines changed: 11 additions & 6 deletions

File tree

.github/workflows/single-app.yaml

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -272,7 +272,8 @@ jobs:
272272
if: matrix.os == 'windows-latest'
273273
timeout-minutes: 20
274274
run: |
275-
$args = "${{ inputs.url }}", "--name", "${{ inputs.name }}"
275+
# Use title as app product name on Windows to preserve display casing
276+
$args = "${{ inputs.url }}", "--name", "${{ inputs.title }}"
276277
277278
# Auto-detect local icon or use provided icon
278279
if ("${{ inputs.icon }}" -ne "") {
@@ -289,10 +290,13 @@ jobs:
289290
290291
# The CLI copies the MSI to project root and removes it from bundle directory
291292
# Check project root first, then fallback to bundle directories
292-
$projectRootMsi = "${{ inputs.name }}.msi"
293+
$projectRootMsi = "${{ inputs.title }}.msi"
294+
$legacyProjectRootMsi = "${{ inputs.name }}.msi"
293295
294296
if (Test-Path $projectRootMsi) {
295297
Move-Item -Path $projectRootMsi -Destination "output\windows\${{inputs.title}}_x64.msi"
298+
} elseif (Test-Path $legacyProjectRootMsi) {
299+
Move-Item -Path $legacyProjectRootMsi -Destination "output\windows\${{inputs.title}}_x64.msi"
296300
} else {
297301
# Check architecture-specific path (x64 builds)
298302
$msiFiles = Get-ChildItem -Path "src-tauri\target\x86_64-pc-windows-msvc\release\bundle\msi\*.msi" -ErrorAction SilentlyContinue
@@ -308,6 +312,7 @@ jobs:
308312
Write-Error "No MSI files found in expected locations"
309313
Write-Host "Searched paths:"
310314
Write-Host " - $projectRootMsi (project root)"
315+
Write-Host " - $legacyProjectRootMsi (project root)"
311316
Write-Host " - src-tauri\target\x86_64-pc-windows-msvc\release\bundle\msi\"
312317
Write-Host " - src-tauri\target\release\bundle\msi\"
313318
Write-Host "`nAll MSI files in target directory:"

dist/cli.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ import * as psl from 'psl';
2222
import { InvalidArgumentError, program as program$1, Option } from 'commander';
2323

2424
var name = "pake-cli";
25-
var version = "3.9.0";
25+
var version = "3.9.1";
2626
var description = "🤱🏻 Turn any webpage into a desktop app with one command. 🤱🏻 一键打包网页生成轻量桌面应用。";
2727
var engines = {
2828
node: ">=18.0.0"

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "pake-cli",
3-
"version": "3.9.0",
3+
"version": "3.9.1",
44
"description": "🤱🏻 Turn any webpage into a desktop app with one command. 🤱🏻 一键打包网页生成轻量桌面应用。",
55
"engines": {
66
"node": ">=18.0.0"

src-tauri/Cargo.lock

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

src-tauri/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "pake"
3-
version = "3.9.0"
3+
version = "3.9.1"
44
description = "🤱🏻 Turn any webpage into a desktop app with Rust."
55
authors = ["Tw93"]
66
license = "MIT"

0 commit comments

Comments
 (0)