feat(workflow): add Wine installation step for Windows packaging
This commit is contained in:
@@ -391,6 +391,19 @@ jobs:
|
||||
- name: Install dependencies
|
||||
run: pnpm install --frozen-lockfile
|
||||
|
||||
- name: Install Wine for Windows packaging
|
||||
if: needs.resolve.outputs.build_win == 'true'
|
||||
run: |
|
||||
set -eu
|
||||
if command -v wine >/dev/null 2>&1; then
|
||||
wine --version
|
||||
exit 0
|
||||
fi
|
||||
|
||||
apt-get update
|
||||
apt-get install -y --no-install-recommends wine64 wine
|
||||
wine --version
|
||||
|
||||
- name: Build unsigned desktop packages
|
||||
working-directory: apps/desktop-client
|
||||
run: |
|
||||
|
||||
Reference in New Issue
Block a user