This commit is contained in:
xunbu
2025-08-21 15:12:15 +08:00
parent 664e5e8f66
commit b1c8b4e9f5
2 changed files with 2 additions and 2 deletions

View File

@@ -38,7 +38,7 @@ jobs:
# 第 5 步: 运行 PyInstaller # 第 5 步: 运行 PyInstaller
- name: Build the application with PyInstaller - name: Build the application with PyInstaller
# 使用你的 macOS spec 文件 # 使用你的 macOS spec 文件
run: pyinstaller lite_mac.spec --noconfirm run: uv run pyinstaller lite_mac.spec --noconfirm
# 第 6 步: 创建 DMG 磁盘映像 (macOS 标准分发格式) # 第 6 步: 创建 DMG 磁盘映像 (macOS 标准分发格式)
- name: Install create-dmg - name: Install create-dmg

View File

@@ -45,7 +45,7 @@ jobs:
# 第 6 步: 运行 PyInstaller # 第 6 步: 运行 PyInstaller
- name: Build the application with PyInstaller - name: Build the application with PyInstaller
# 使用你的 Windows spec 文件 # 使用你的 Windows spec 文件
run: pyinstaller lite.spec --noconfirm run: uv run pyinstaller lite.spec --noconfirm
# 第 7 步: 将单个 exe 文件打包成 .zip # 第 7 步: 将单个 exe 文件打包成 .zip
- name: Package executable into a zip file - name: Package executable into a zip file