From b1c8b4e9f57e570f796256d75b135ae5fe28de0d Mon Sep 17 00:00:00 2001 From: xunbu Date: Thu, 21 Aug 2025 15:12:15 +0800 Subject: [PATCH] fix --- .github/workflows/build-macos.yml | 2 +- .github/workflows/build-windows.yml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/build-macos.yml b/.github/workflows/build-macos.yml index 91120cf..bd84a92 100644 --- a/.github/workflows/build-macos.yml +++ b/.github/workflows/build-macos.yml @@ -38,7 +38,7 @@ jobs: # 第 5 步: 运行 PyInstaller - name: Build the application with PyInstaller # 使用你的 macOS spec 文件 - run: pyinstaller lite_mac.spec --noconfirm + run: uv run pyinstaller lite_mac.spec --noconfirm # 第 6 步: 创建 DMG 磁盘映像 (macOS 标准分发格式) - name: Install create-dmg diff --git a/.github/workflows/build-windows.yml b/.github/workflows/build-windows.yml index c318b01..636cc1e 100644 --- a/.github/workflows/build-windows.yml +++ b/.github/workflows/build-windows.yml @@ -45,7 +45,7 @@ jobs: # 第 6 步: 运行 PyInstaller - name: Build the application with PyInstaller # 使用你的 Windows spec 文件 - run: pyinstaller lite.spec --noconfirm + run: uv run pyinstaller lite.spec --noconfirm # 第 7 步: 将单个 exe 文件打包成 .zip - name: Package executable into a zip file