feat(build): add prebuild step for Windows in desktop workflow

- Introduced a new step to prebuild packages specifically for Windows environments in the build-desktop.yml workflow.
- This enhancement ensures that Windows users have the necessary packages built before proceeding with the main build process.

Signed-off-by: Innei <tukon479@gmail.com>
This commit is contained in:
Innei 2025-05-16 12:16:26 +08:00
parent 53440a3918
commit 7d2ba96886
No known key found for this signature in database
GPG Key ID: 0F62D33977F021F7
1 changed files with 5 additions and 0 deletions

View File

@ -124,6 +124,11 @@ jobs:
- name: Install dependencies
run: pnpm i
- name: Prebuild packages (Windows)
if: runner.os == 'windows'
run: pnpm run build:packages
- name: Update main hash
working-directory: apps/desktop
run: pnpm update:main-hash